Application_Error doesn't work with Integrated Mode but does work with Class Mode. I would to transfer request to error page using both Integrated Mode and Class Mode. Can this be done or I have to use HTTP module in order to support both modes?

protected void Application_Error(object sender, EventArgs e)
{
    if (Context != null && Context.IsCustomErrorEnabled)
    {
        Server.Transfer("~/Error.aspx", false);
    }
}
link|improve this question

50% accept rate
1  
In IIS7, there are two modes for ASP.NET application pools: classic mode (only mode available for IIS6) and integrated mode. Integrated Mode offers quite a bit with IIS7 and is the recommended mode for application pools. One of the changes is that the Integrated mode does not have access to the HttpContext during the Application_Start method in the global.asax. It also has an affect on HttpModules and HttpHandlers that reference the HttpContext as well. You'll want to keep this in mind when building your application structure. – user81740 Jul 19 '09 at 21:17
ASP.NET Application Life Cycle Overview for IIS 7.0 msdn.microsoft.com/en-us/library/bb470252.aspx – user81740 Jul 19 '09 at 21:31
You can write HTTP module that will handle error. Similar to this one: msmvps.com/blogs/vcsjones/archive/2008/12/26/… – user81740 Jul 19 '09 at 21:40
If your question was answered, please mark the relevant as the answer. Or provide some feedback so we know the outcome. – Shiv Kumar Nov 14 '10 at 17:04
feedback

2 Answers

You should use HttpContext.Current (HttpContext is a static class). So where you're now using Context, change that to HttpContext.Current

link|improve this answer
feedback

You could try changing your code from Server.Transfer to Server.TransferRequest. See my answer on another question here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.