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
I had that problem too.
Try using Server.Transfer instead of Response.Redirect
Server.Transfer
Response.Redirect
Worked for me.