Using Response.Redirect and Response.End in Try...Catch block
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
You must Login to comment.
|
Wed, May 6, 2009 12:39 AM
by nmreddy83
|
excellent tip.. thank you
|
|
Wed, May 6, 2009 12:42 AM
by anish007
|
thank you, that code may be the great help for me
|
|
Wed, May 6, 2009 7:23 AM
by Corny51
|
nice and clean. Thanks.
|
|
Thu, May 7, 2009 4:20 AM
by tharun_yellow
|
nice
|
|
Thu, May 7, 2009 10:28 AM
by abishasharaf
|
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);
|
|
Sat, May 9, 2009 5:57 AM
by asifchouhan
|
To avoid this exception you can the end the response before redirecting it For example Response.Redirect("Page1.aspx",false)
|
|
Mon, May 11, 2009 8:19 AM
by amol.sonawane
|
good one... really useful
|
|
Sat, Jan 23, 2010 11:05 AM
by sean_mufc
|
or you could just use: HttpContext.ApplicationInstance.CompleteRequest();
|
|
Mon, Nov 15, 2010 11:23 PM
by masilamani
|
i want to know how to redirect with including arguments
|