When I use Response.Redirect(...) to redirect my form to a new page I get the error:
A first chance exception of type \'System.Threading.ThreadAbortEx
What I do is catch this exception, together with another possible exceptions. Hope this help someone.
catch (ThreadAbortException ex1) { writeToLog(ex1.Message); } catch(Exception ex) { writeToLog(ex.Message); }