1.向项目中添加Jscript文件 2.解决方案资源管理器中,右键查看script_1.js和script_2.js的属性,把高级中的“生成操作”属性设置成“嵌入的资源”。 3.向AssemblyInfo.cs文件中添加如下行:(注意域名wf.ClientScriptResourceLabel) 4.向项目中添加一个类, 实例: namespace wf.ClientScriptResourceLabel output.AddAttribute(“id”, “2”); base.RenderContents(output);
//script_1.js—–
function doClick1()
{
alert(“OK1_wufeng”);
}
//script_2.js—–
function doClick2()
{
alert(“OK2”);
}
[assembly: System.Web.UI.WebResource(“wf.ClientScriptResourceLabel.script_1.js”, “application/x-javascript”)]
[assembly: System.Web.UI.WebResource(“wf.ClientScriptResourceLabel.script_2.js”, “application/x-javascript”)]
using System;
using System.Drawing;
using System.Web.UI;
using System.Web;
using System.Globalization;
{
public class ClientScriptResourceLabel : System.Web.UI.WebControls.WebControl
{
//调用脚本资源
protected override void OnPreRender(EventArgs e)
{
if (this.Page != null)
{
this.Page.ClientScript.RegisterClientScriptResource(typeof(ClientScriptResourceLabel), “wf.ClientScriptResourceLabel.script_1.js”);
this.Page.ClientScript.RegisterClientScriptResource(typeof(ClientScriptResourceLabel), “wf.ClientScriptResourceLabel.script_2.js”);
}
base.OnPreRender(e);
}
/// <summary>
/// 呈现控件的方法RenderContents
/// </summary>
protected override void RenderContents(HtmlTextWriter output)
{
output.AddAttribute(“id”, “1”);
output.AddAttribute(“type”, “checkbox”);
output.AddAttribute(“value”, “测试1”);
output.AddAttribute(“onclick”, “javascript:doClick1();”);
output.RenderBeginTag(HtmlTextWriterTag.Input);
output.RenderEndTag();
output.AddAttribute(“type”, “checkbox”);
output.AddAttribute(“value”, “测试2”);
output.AddAttribute(“onclick”, “javascript:doClick2();”);
output.RenderBeginTag(HtmlTextWriterTag.Input);
output.RenderEndTag();
}
}
}
大家可以试试
将js文件编译成动态链接库(dll)文件_javascript教程
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 将js文件编译成动态链接库(dll)文件_javascript教程
相关推荐
-      mootools实例:更改div的透明度动画效果
-      jquery获取当前类在第几个li上面
-      mootools应用:获取复选框中选中的值
-      使用javascript设置下拉框的默认值
-      javascript自动获取标题中的关键词
-      一款漂亮的黑色风格JS焦点图,使用简单
-      用jquery的siblings来实现tab选项卡功能
-      jquery框架操作checkbox控件