ASP.NET Web 应用程序 - WebResource.axd 和 ScriptResource.axd 文件 - 加载时间问题
。 你好, 我们正在使用 C#.net 作为语言构建 ASP.NET 应用程序。
在这里,当 IIS 呈现页面时,当我们使用YSlow工具分析页面代码时,它显示了许多WebResource.axd和ScriptResource.axd文件(因为我们在页面中引用了许多脚本文件)。
服务器端代码执行速度很快,但加载这些 .axd 文件需要时间。 那么,如果有办法优化或抑制这些 axd 文件,请指导我吗?
如果您还可以提供参考文档或网络参考(如果需要),那就太好了。
非常感谢, 问候。
.
Hi,
We are building an ASP.NET application with C#.net as language.
Here, when the IIS renders a page & when we analyze the page code with YSlow tool it shows many WebResource.axd and ScriptResource.axd files (as we are referring many script files in the page).
Server-side code is executing fast but loading of these .axd files is taking time.
So would you please guide me on this, if there is a way to optimize or suppress these axd files?
If would be great if you could also provide a reference document or web references (If needed).
Many Thanks,
Regards.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
WebResource.axd 和 ScriptResource.axd 引用是 .NET Framework 中的嵌入式资源。 WebResource.axd 脚本可能用于 Web 表单和验证,而 ScriptResource.axd 用于 ASP.NET AJAX 。
您可以使用 ToolkitScriptManager< 将 ScriptResource.axd 脚本合并到一个包含文件中/a> (ASP.NET AJAX 控制工具包 的一部分) 。
我不确定组合 WebResource.axd 脚本的方法。
请参阅此 有关组合脚本的更多信息,请提问。
WebResource.axd and ScriptResource.axd references are embedded resources in the .NET Framework. WebResource.axd scripts are probably for web forms and validation while ScriptResource.axd is for ASP.NET AJAX.
You can combine the ScriptResource.axd scripts into one include by using the ToolkitScriptManager (part of the ASP.NET AJAX Control Toolkit).
I'm not sure of a way to combine the WebResource.axd scripts.
See this question for more on combining scripts.
jrummell 是对的,但如果您想详细了解改进方法,我建议您使用以下链接:
ASP.NET AJAX 性能改进
它提供了有关脚本组合、打开缓存等的详细信息。相信我,它将帮助您加快速度。
jrummell is right on but if you want a detailed explanation of ways to improve that I would suggest this link:
ASP.NET AJAX Performance Improvement
It gives detailed information on script combining, turning on caching, and etc. Trust me it will help you speed it up.
我意识到我迟到了几年,但是对于所有谷歌用户来说,我刚刚推出了我的动态 js/css minifier/merger RequestReduce 在运行时成功合并 Web 资源和脚本资源文件。
I realize I'm a couple years late here, but for all you googlers out there, I just pushed a new release of my on the fly js/css minifier/merger RequestReduce that successfully merges Webresource and scriptresource files at run time.