Exception “Thread was being aborted” while doing Response.End, Response.Redirect or Server.Transfer

5. January 2007

To avoid this error, replace :

Response.End
 with HttpContext.Current.ApplicationInstance.CompleteRequest();

Response.Redirect(url) with Response.Redirect(url, false)

Server.Transfert with Server.Execute

For details, consult the microsoft kb : http://support.microsoft.com/kb/312629/EN-US/

Asp.net, Asp.net ,

Add comment


(Will show your Gravatar icon)

  Country flag

biuquote
  • Comment
  • Preview
Loading