首頁  >  文章  >  後端開發  >  ASP.NET2.0 WebRource,開發微調按鈕控制項

ASP.NET2.0 WebRource,開發微調按鈕控制項

巴扎黑
巴扎黑原創
2017-05-21 11:54:071287瀏覽

現在。有許多開發人員已經在使用ASP.NET2.0的WebResource的功能了。 WebResource允許我們嵌入資源到程式集中。包括圖像,文字等。

在介紹WebResource就必須介紹一下WebResource.axd,我們來看看

script language="javascript"     src="WebResource.axd?a=s&r=WebUIValidation.js&t=631944362841472848 "     type="text/javascript">目前我發現webResource.axd的參數跟現在版本有屬不同。在早期文章介紹屬性:
a 組件名稱
r 資源檔案名稱
t 組件最後修改的時間
 


webResource.axd只是ISAPI中的一個映射。你也可以在使用IhttpHandler。 webResource.axd是透過AssemblyResourceLoader類別來自訂處理HTTP請求,根據所識別從哪個程式集中取得哪個資源。

下面以微調控制項為範例。

使用步驟:
新增要嵌入的資源(例如圖像)到項目中
在資源管理器中,按一下文件,在property window(屬性視窗)中build action選擇embedded resource (嵌入資源)。
新增下列檔案到你的assessbly.cs檔案哪
[assembly: WebResource("Obies.Web.UI.WebControls.NumericTextBox.js", "application/x-javascript")]
[ assembly: WebResource("Obies.Web.UI.WebControls.NumericTextBox_Silver_BtnUp.gif", "image/gif")]請注意WebResourceAttribute格式:
[assembly: WebResourceAttribute("MyNameSpaces.Resources. /gif")]
在CONTROL原始碼當中。你需要使用下面程式​​碼來取得圖片
    // get WebResource URLs for the embedded gif images
            String BtnUpImgSrc = this.Page.ClientScript.GetWebResources(Web.Let WebControls.NumericTextBox_" + this.ImageSet.ToString() + "_BtnUp.gif");GetWebResourceUrl method:Gets a URL reference to a server-side resource.(取得伺服器端資源的URL 引用)
我發現在在早期版本當中。它的使用方法是:this.page.GetWebResourceUrl

上面程式碼是從指定的程式集中當中取得影像名稱​​:Obies.Web.UI.WebControls.NumericTextBox_" + this.ImageSet.ToString() + "_BtnUp.gif,它回傳的是一個伺服器端資源的URL引用位址。類似:

WebResource.axd?d=gWYJBlnQKynoTePlJ34jxyoSpR2Rh9lpYd8ZrSl0&t=632812333820000000

#另外,MS提供一個Header類別。 Header類別主要是對HTML頁面中的的操作。包括Title等

呵呵。以後要修改一個頁面的標題很簡單了。
this.Header.Title = "This is the new page title.";
新增CSS樣式(style attribute) Style style = new Style();
style.ForeColor = System.Drawing.Color. Navy;
style.BackColor = System.Drawing.Color.LightGray;

// Add the style to the header for the body of the page

this.Header.StyleSheet.CreateStyleRule(style, null, "body");

protected override void OnPreRender (EventArgs e) {
            // 取得核心 JS 腳本的 WebResource URL 並註冊它
    bies .Web .UI.WebControls.NumericTextBox.js");   
            // 取得內嵌 CSS 的 WebResource URL
            對中對中 CSS 的 WebResource URL
            String css = this.Page.ClientScript.GetWebResourceUrl (Web)U. ImageSet + " .css");
            // 註冊CSS
           // this.Page.StyleSheetTheme = cp.# s); 
//早期版本的方法?
            link.Attributes.Add("rel", "stylesheet");
           .Controls.Add(link);

        }      
以下是控制的截圖

使用方法:

<%@ register tagprefix="cc" namespace="Obies.Web.UI.WebControls" assembly =WebControls "Obies.Web.UI.WebControls" %>


maxvalue ="10" minvalue="0">

maxvalue="10" minvalue="0">

來源位址:
http://msdn.microsoft.com/library/ default.asp?url=/library /en-us/

dnvs05/html/webresource.asp

由於原來的程式碼有點問題,很多功能都是最新VS2005不支援的。 所以進行了修改了。

http://www.cnblogs.com/Files/cnzc/PostWebFormBetweenFrames.zip
在寫這篇文章查了很多資料。寫的不太好。 ##以後在努力了。

以上是ASP.NET2.0 WebRource,開發微調按鈕控制項的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn