up vote 13 down vote favorite
1
share [g+] share [fb]

self explanatory question.

Why does this thing bubble into my try catch's even when nothing is wrong?

Why is it showing up in my log, hundreds of times?

I know its a newb question, but if this site is gonna get search ranking and draw in newbs we have to ask them

link|improve this question

feedback

4 Answers

up vote 17 down vote accepted

This is probably coming from a Response.Redirect call. Check this link for an explanation:

http://dotnet.org.za/armand/archive/2004/11/16/7088.aspx

(In most cases, calling Response.Redirect(url, false) fixes the problem)

link|improve this answer
1  
Note that the link above is broken – JoshL Jul 27 '11 at 21:57
Eric's answer is correct but you should be aware that passing in the false parameter means that the current thread is not aborted i.e. the code after Response.Redirect will be run. – CodeClimber Jan 19 at 9:54
feedback

The most common reason for a ThreadAbortException is calling Response.End, Response.Redirect, or Server.Transfer. Microsoft has published some suggested functions that should be used in stead of those functions.

link|improve this answer
feedback

I have an entire article on this with what I think is a very good explanation and solution. Take a look. http://www.c6software.com/Articles/ThreadAbortException.aspx

link|improve this answer
feedback

As others have said, it occurs when you call Response.End() (which occurs when you call Response.Redirect without passing false as the second parameter). This is working as designed; typically, if you call Response.Redirect, you want the redirect to happen immediately. See this for more information:

Response.Redirect and the ThreadAbortException

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.