Guys, what is the name of HttpModule which serves standard Asp.Net error screens with the stack trace? Can I disable this in order to modify response when application error occurs? Or is there another way to modify the response for example in Global.asax or custom HttpModule on Application_Error?
1 Answer
Why don't you use much better CustomErrors section in web.config
2 Comments
Uxio
I need to modify the response on async postback, not to show custom error page.
Madhur Ahuja
I am still not clear, you can do whatever you want on your error.aspx page. Do you mean whenever error orccurs in your application, you want to show error there itself on same page asynchronously ?