ASP.NET web application - WebResource.axd and ScriptResource.axd files - Loading time issue

假装没事ソ 提交于 2019-12-02 18:31:25
jrummell

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 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.

Matt Wrock

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.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!