Kodda, Response.End, Response.Redirect, ya da Server.Transfer kullanılmışsa ortaya çıkan bu ThreadAbortException'ı gidermek için şu yolları deneyebilirsiniz:
- Response.End yerine HttpContext.Current.ApplicationInstance.CompleteRequest kullanmak
- Response.Redirect yerine, overload'u olan Response.Redirect(String url, bool endResponse) kullanmak
Response.Redirect ("nextpage.aspx", false);
- Server.Transfer yerine Server.Execute kullanmak