In the Line of Fire….Shaunak Pandit

Random thoughts abt life and my work (in the line of fire between Testers,Managers and clients)

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.

13 Responses to “Response.Redirect Try catch block , ThreadAbortException”

  1. Wenancelvekat said

    Hello
    Nice site!

    Bye

  2. Hi!
    My name is Jessika!

  3. Thanks Wenancelvekat

  4. Dipen Bhadra said

    good answer, Post more comments…

  5. Quang Nguyen said

    Thanks a million, you’ve helped me a lot.

  6. 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 ?

  7. 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,

  8. 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…

  9. Alisson unfortunately havent looked into it in that detail. but my guess is if we keep it executing it should be consuming resources

  10. Kamlesh said

    thanks your soln works…..helped me a lot…….

  11. nice to know that kamlesh

  12. [...] 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 [...]

Leave a Reply

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <pre> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>