如何将脚本管理器引用添加到 MS CDN JQuery
我使用 C# 和 ASP.Net 4。 我有一个母版页,位于带有 EnableCdn="True"
的脚本管理器中,因此我可以从 MS CDN 服务器自动加载所有 ASP.NET Ajax 库。
<asp:ScriptManager ID="uxScriptManagerMasterPage" runat="server"
EnableCdn="True">
</asp:ScriptManager>
我还需要包含在我的母版页 JQuery 库中。目前,我在页面标题中使用以下元素:
<script src="http://ajax.aspnetcdn.com/ajax/jquery/jquery-1.5.1.min.js" type="text/javascript"></script>
我想知道 ScriptManager 是否有任何属性允许我使用 ScriptManager 从 MS CDN 加载所有 Ms Ajax 库和 Jquery。
我查看了 CdnPath 属性,但无法使其工作。
你有什么想法吗?您能为我提供代码示例吗?谢谢
I use C# and ASP.Net 4.
I have a Master Page, inside a Script Manager with EnableCdn="True"
so I can load automatically all ASP.NET Ajax Library from MS CDN Servers.
<asp:ScriptManager ID="uxScriptManagerMasterPage" runat="server"
EnableCdn="True">
</asp:ScriptManager>
I need also to include in my Master Page JQuery library. At the moment I'm using the following element in the Header of the page:
<script src="http://ajax.aspnetcdn.com/ajax/jquery/jquery-1.5.1.min.js" type="text/javascript"></script>
I would like to know if there is any properierty for ScriptManager that would allow me to load all Ms Ajax library plus Jquery from MS CDN using ScriptManager.
I had a look at CdnPath property but I'm not able to make it work.
DO you have any ideas? Are you able to provide me a sample of code? thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
本节的 ScriptResourceMapping 部分
Asp.Net 4.0 ScriptManager改进 帖子展示了此问题的解决方案。
The ScriptResourceMapping section of this
Asp.Net 4.0 ScriptManager improvements post shows a solution for this problem.