I'm working on a asp.net web application with Visual Studio 2010. There are a bunch of output window messages during debugging regarding:
A first chance exception of type 'System.Threading.ThreadAbortException' occurred in mscorlib.dll
and
An exception of type 'System.Threading.ThreadAbortException' occurred in mscorlib.dll but was not handled in user code
I've read some great Q&A on the topic of how and why these might be raised and how to handle them (or not handle them). My first guess is that it is related to Response.Redirect()s that are in the code. However, I see them in the output and I'm not sure of the source of those output messages.
Question: how do I determine where the first chance exception came from in Visual Studio 2010?
Once I determine the source, I can investigate, solve or simply ignore per the Q&A linked to this question. Thanks in advance!