Home / ASP.NET Wiki / HTML / Using Response.Redirect and Response.End in Try...Catch block

Using Response.Redirect and Response.End in Try...Catch block

 Rate It (11)

Using Response.Redirect and Response.End in Try...Catch block

In ASP.NET if you are using Response.End - Used for terminating page execution or Response.Redirect - used for redirecting page to some other page, and you are including these statements in TRY... CATCH block here is what you need to remember.

Problem: 

When Response.Redirect or Response.End is written in TRY block, code in catch block is executed.

Reason:

ASP.NET executes these 2 methods on Response object by throwing ThreadAbort Exception. When written in simple Try...Catch block this results in Catch block catching this exception and processing code written in catch block. This causes unwanted code execution e.g. error logging or genric error display code which is generally written in Catch block.

Solution:

You need to handle ThreadAbort exception separately and do nothing if it is thrown. Refer following code patch:

try
{
                 // Your actual code

                Response.End();
}

catch
(ThreadAbortException exc)
{
                 // This should be first catch block i.e. before generic Exception
                 // This Catch block is to absorb exception thrown by Response.End
}
catch (Exception exc)
{
                // Write actual error handling code here
}

Revision number 2, Saturday, April 25, 2009 2:25:06 PM by mbanavige

Comments

excellent tip.. thank you

thank you, that code may be the great help for me

nice and clean. Thanks.

nice

The Response.Redirect fails within a Try catch block because the thread stops execution when it reaches this line and it could be avoided by specifying the endExecution as false in the statement. Response.Redirect("url", false);

To avoid this exception you can the end the response before redirecting it For example Response.Redirect("Page1.aspx",false)

good one... really useful

or you could just use: HttpContext.ApplicationInstance.CompleteRequest();

i want to know how to redirect with including arguments

Shortcuts

Table of Contents

Top Wiki Contributors

(last 30 days)

  1. francissvk (1)
  2. deepeshsp (1)