Just another tech site

C# ASP.NET : ThreadAbortException


try
{
      response.Redirect(PAGE);
}
catch (ThreadAbortException)
{
       // Standard ASP.NET page lifecycle (due to calls to Response.Redirect()).
}
catch (Exception ex)
{

}

Leave a comment