Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is ScriptResource.axd in the page load in web app?

What is ScriptResource.axd please find below in image.. is there anyway to remove it in the page request i have to pass my web page in PT test for 500ms.

enter image description here

like image 217
Suresh Savage Avatar asked Feb 07 '14 05:02

Suresh Savage


People also ask

What is ScriptResource Axd file?

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

How do I view Axd files?

How to Open Your AXD File. The easiest way to open file extension AXD is to try downloading some of the most popular software that uses AXD extension. The most well-known programs associated with AXD files include Label Pro Re-Index, ASP.NET Web Handler File, and Actrix Technical 2000.


1 Answers

You shouldn't try to remove requests to those handlers without understanding why the requests are being made. A batch of ScriptResource.axd requests like that are usually due to ASP.NET controls registering includes to the scripts that they're dependent on, especially scripts for the ASP.NET AJAX Control Toolkit controls.

If you want to minimize the number of individual requests without breaking your site, look into the ScriptManager's ability to combine multiple scripts into a single payload instead of individual scripts: http://msdn.microsoft.com/en-us/library/cc488552(v=vs.90).aspx

like image 85
Dave Ward Avatar answered Oct 14 '22 11:10

Dave Ward