I am using Server.Transfer. Everything works fine, but exception log shows following exception.

System.Threading.ThreadAbortException: Thread was being aborted.
   at System.Threading.Thread.AbortInternal()
   at System.Threading.Thread.Abort(Object stateInfo)
   at System.Web.HttpResponse.End()
   at System.Web.HttpServerUtility.Transfer(String path, Boolean preserveForm)
   at System.Web.HttpServerUtility.Transfer(String path)

Any idea to avoid above exception.

link|improve this question

feedback

4 Answers

up vote 9 down vote accepted

This exception is throw by the call to Server.Transfer in order to halt the execution of the current method - exactly the same thing gets thrown if you do Response.Redirect.

The two choices you have are:

  • Catch and rethrow the ThreadAbortException / reperform the Server.Transfer
  • Make sure that you only do Server.Transfer in places where it wont be caught (recommended)

EDIT: Scratch that, http://support.microsoft.com/kb/312629 has a couple of other suggestions to try, but I still recommend #2 above.

link|improve this answer
can you explain both choices in little detail? – Syed Tayyab Ali Sep 16 '09 at 14:51
obviously, i m using try catch statements to catch this exception. – Syed Tayyab Ali Sep 16 '09 at 14:57
feedback

Caling Server.Transfer will call Response.End which always throws a ThreadAbortException. This s a "special" exception because while it can be caught in a catch block, it will always be re thrown at the end of the catch block. I would have your error logging ignore ThreadAbortExceptions.

link|improve this answer
It make sense to me that Server.Transfer will call Response.End implicitly. What do you mean by error logging ignore threadAbortException. – Syed Tayyab Ali Sep 16 '09 at 14:54
3  
If you are logging exceptions to a persistable logging system, I would filter out ThreadAbortExceptions or have your reports that query this loging system filter them out. – Matt Wrock Sep 16 '09 at 15:02
It make sense that this exception is not serious one, therefore I can ignore it by filtering out.. thank you. – Syed Tayyab Ali Sep 16 '09 at 15:11
feedback

Error: Thread was being aborted. at System.Threading.Thread.AbortInternal() at System.Threading.Thread.Abort(Object stateInfo) at System.Web.HttpResponse.End()

This error occurs mainly If You Use Response.End, Response.Redirect, or Server.Transfer

Cause: The Response.End method ends the page execution and shifts the execution to the Application_EndRequest event in the application’s event pipeline. The line of code that follows Response.End is not executed.

This problem occurs in the Response.Redirect and Server.Transfer methods because both methods call Response.End internally.

Resolution/Solution:

You can use a try-catch statement to catch this exception

or

For Response.End, call the HttpContext.Current.ApplicationInstance.CompleteRequest method instead of Response.End to bypass the code execution to the Application_EndRequest event. For Response.Redirect, use an overload, Response.Redirect(String url, bool endResponse) that passes false for the endResponse parameter to suppress the internal call to Response.End. For example: ex: Response.Redirect (“nextpage.aspx”, false); If you use this workaround, the code that follows Response.Redirect is executed. For Server.Transfer, use the Server.Execute method instead.

link|improve this answer
feedback

This problem occurs in the Response.Redirect and Server.Transfer methods because both methods call Response.End internally.

Solution for this Problem is as follows.

For Server.Transfer, use the Server.Execute method instead.

Here are more details for same issue due to Response.Redirect and Response.End Click 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.