類名字空間前資源注冊
復(fù)制代碼 代碼如下:
[assembly: System.Web.UI.WebResource("XXX.js.FilePlugin.js", "text/javascript")]
OnPreRender事件
//資源名稱
string _strResourceKey = ""; //資源名稱
ClientScriptManager _csm = Page.ClientScript;
//if (this.Page.Header.FindControl(_strResourceKey) == null)
//{
// string _src = _csm.GetWebResourceUrl(this.GetType(), _strResourceKey);
// Literal _literal = new Literal();
// _literal.ID = _strResourceKey;
// _literal.Text = string.Format("\nscript type=\"text/javascript\" src=\"{0}\" >/script>", _src);
// this.Parent.Page.Header.Controls.Add(_literal);
//}
//if (!this.Page.ClientScript.IsStartupScriptRegistered(_strResourceKey))
//{
// string _src = _csm.GetWebResourceUrl(this.GetType(), _strResourceKey);
// _src = string.Format("\nscript type=\"text/javascript\" src=\"{0}\" >/script>", _src);
// Page.ClientScript.RegisterStartupScript(this.GetType(), _strResourceKey, _src);
//}
if (!this.Page.ClientScript.IsClientScriptIncludeRegistered(_strResourceKey))
{
string _src = _csm.GetWebResourceUrl(this.GetType(), _strResourceKey);
Page.ClientScript.RegisterClientScriptInclude(this.GetType(), _strResourceKey, _src);
}
您可能感興趣的文章:- ASP.NET主機(jī)資源控制的一些心得
- asp.net(C#) 開源資源大匯總
- asp.net中資源文件的使用
- 實(shí)例講解.NET中資源文件的創(chuàng)建與使用
- .NET 資源文件resx、Resources詳細(xì)說明
- ASP.NET 服務(wù)器路徑和一般資源調(diào)用
- 詳談.net中的垃圾回收機(jī)制
- asp.net中virtual和abstract的區(qū)別分析
- ASP.NET實(shí)現(xiàn)將word文檔轉(zhuǎn)換成pdf的方法
- ASP.NET配置文件Web.config用法詳解
- ASP.net全局程序文件Global.asax用法分析
- .net非托管資源的回收方法