使用 ScriptManager 处理自定义非 Ajax 脚本时的问题
我有一个使用各种脚本文件的应用程序。这些文件不用于任何 AJAX 目的。不过,我正在使用 MS AJAX 库。我的目标是使用 ScriptManager 来管理 JavaScript 的发布和调试版本。这是正确的方法吗?有更好的方法来处理这个任务吗?
I have an application that uses various script files. These files are not used for any AJAX purposes. However, I am using MS AJAX Libraries. My goal is to use the ScriptManager to manage release and debug versions of my JavaScript. Is this the right approach? Is there a better way to handle this task?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现使用 ScriptManager 时会产生一些额外的开销。经过一番阅读后发现,只有当您计划发送 AJAX 库时才应使用 ScriptManager 控件,否则建议使用 ClientScriptManager。
I found that there is some additional overhead when you are using the ScriptManager. After doing some reading it looks like the ScriptManager control should only be used if you plan on sending down the AJAX library otherwise it would be advised to use the ClientScriptManager.