‘Thread was being aborted’ error in ASP.NET

06.02.2011

Solution. pass in false as second parameter for Response Redirect.  This stops it from cutting off the thread.

example.

Response.Redirect(“Default7.aspx”, false);