Author: André N. Klingsheim | Posted on: 2/23/2012 5:22:14 PM | Views : 1016

ASP.NET features some built in handlers, WebResource.axd and ScriptResource.axd, serving builtin scripts for e.g. postback or client side form validation. Take note that HTTP modules are hooked into the event pipeline for each and every request handled by the ASP.NET application, including requests to the WebResource.axd and ScriptResource.axd handlers. Depending on the HttpModule, this can have undesired side effects. ...

Go to the complete details ...