ASP.net - C# - 如何让它运行得更快 ajaxToolkit : ToolkitScriptManager
我正在为我的网站使用 ajaxToolkit。我想让它跑得更快。
ASP.net Netframework 4.0 - C# - Microsoft Visual Studio 2010
以下配置是我当前的配置。等待您的进一步建议。
<ajaxToolkit:ToolkitScriptManager runat="server"
ID="SC1" ScriptMode="Release"
LoadScriptsBeforeUI="false"
EnablePartialRendering="true"
CombineScripts="true" />
I am using ajaxToolkit for my website. I want to make it run faster.
ASP.net Netframework 4.0 - C# - Microsoft Visual Studio 2010
The below config is my current config. Waiting your further suggestions.
<ajaxToolkit:ToolkitScriptManager runat="server"
ID="SC1" ScriptMode="Release"
LoadScriptsBeforeUI="false"
EnablePartialRendering="true"
CombineScripts="true" />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要优化 Web 应用程序中的 ASP.NET AJAX,首先,我们需要确保在 web.config 中启用压缩和缓存:
如果您使用的是 ASP.NET 3.5 SP1,有一个更强大的工具可以组合脚本文件 – CompositeScript.
参考:ASP.NET Ajax 性能
To optimize the ASP.NET AJAX in our web application, first of all, we need to make sure the Compression and Caching is enabled in web.config:
If you are using ASP.NET 3.5 with SP1, there is a more powerful tool to combining the Script file – CompositeScript.
Reference : ASP.NET Ajax Performance