类名字空间前资源注册
复制代码 代码如下:
[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主机资源控制的一些心得
- asp.net(C#) 开源资源大汇总
- asp.net中资源文件的使用
- 实例讲解.NET中资源文件的创建与使用
- .NET 资源文件resx、Resources详细说明
- ASP.NET 服务器路径和一般资源调用
- 详谈.net中的垃圾回收机制
- asp.net中virtual和abstract的区别分析
- ASP.NET实现将word文档转换成pdf的方法
- ASP.NET配置文件Web.config用法详解
- ASP.net全局程序文件Global.asax用法分析
- .net非托管资源的回收方法