Thread was being aborted

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi!!!
When my webapplication hit this line:

Response.Redirect("Page.aspx?Variable=Something");

I got this exception:

Thread was being aborted.

Any ideas?

Raul
 
This is documented. Response.Redirect throws this exception. The solution is
to take it out of the try/catch block.
 
Back
Top