Response.Redirect Try catch block , ThreadAbortException
Posted by Shaunak Pandit on September 10, 2008
What is with the combination of Response.redirect and Try catch block?
well, most of you who have tried out the combination must have been stuck with a weird error of “Thread was being aborted” and must have wondered what has a thread got to do with Response.redirect?
Well, to answer your question here goes:-
A thread is executing your application in terms of ASP.NET worker process , when you call Response.Redirect(URL);
In your code then to redirect to the new URL specified by you ASP.NET framework must be told to stop the current execution of the page and to transfer the execution to the URL page specified in the method call.
This is done in a 2 way step :-
1) Response.End() is called internally by Response.Redirect to stop the current execution and the ThreadAbortException is thrown.
2) .NET framework will call catch “ThreadAbortException” and stop current execution and start executing the new page.
Now during the Step #1 Response.End will throw out a “ThreadAbortException” to let .NET framework know that the current execution needs to be stopped and the execution of new should begin.
Asp.net framework catches the Redirect method’s exception, aborts the thread and use a new thread for execution of to be redirected page.
Solution :- The way to get over this problem is to specify Response.Redirect(URL,false) , this will tell .NET framework not to stop the execution of the current thread and hence the error will be resolved.
“ThreadAbortException” is a special kind of an exception even if you catch it in a catch block even then it will be raised again at the end of the catch block. When this exception is raised, the runtime executes all the finally blocks before killing the thread.

Wenancelvekat said
Hello
Nice site!
Bye
Shashsuette said
Hi!
My name is Jessika!
Shaunak Pandit said
Thanks Wenancelvekat
Dipen Bhadra said
good answer, Post more comments…
Shaunak Pandit said
Thanks Dipen… but comments on what?
Quang Nguyen said
Thanks a million, you’ve helped me a lot.
Alisson Santana said
Hi, Pandit.
That page that we left “executing” (’cause we explicit told to asp .net to keep executing it), will still be consuming resources on server or it will be unloaded in a undetermined time?
Do you know something about these workflow ?
laulsescout said
This look interesting,so far.
If it’s not just all bots here, let me know. I’m looking to network
Oh, and yes I’m a real person LOL.
See ya,
Shaunak Pandit said
well these are live people blogging not bots
thoh yeah been out of touch of the blog for a while hope to get back up and rolling…
Shaunak Pandit said
Alisson unfortunately havent looked into it in that detail. but my guess is if we keep it executing it should be consuming resources
Kamlesh said
thanks your soln works…..helped me a lot…….
Shaunak Pandit said
nice to know that kamlesh
Exception Handling .NET Try Catch Finally Block working « In the Line of Fire….Shaunak Pandit said
[...] a Appointment programm…Jenkins on Sending a Appointment programm…Shaunak Pandit on Response.Redirect Try catch bl…Kamlesh on Response.Redirect Try catch bl…Shaunak Pandit on Response.Redirect Try catch [...]