Will code in finally run after a redirect?

Take for example the following code:

   try
   {
      Response.Redirect(someurl);
    }
    finally
    {
       // Will this code run?
    }

Will the code in the finally block run?

8
задан Shiraz Bhaiji 8 September 2010 в 13:55
поделиться