如何添加 jQuery 文件以在 Web 应用程序的所有页面中使用?
我以这种方式进行了尝试,并ScriptManger
在母版页的Page_Load
事件中使用了as this:
ScriptManager manager = new ScriptManager();
manager.Scripts.Add(new ScriptReference("script/jquery-2.0.1.min.js"));
manager.Scripts.Add(new ScriptReference("script/jquery.contextMenu.js"));
但它不起作用。