Live Chat Icon For mobile
Live Chat Icon

Why do I get error message ‘System.Threading.ThreadAbortException: Thread was being aborted’ while using Response.Redirect

Platform: ASP.NET| Category: Error Handling

Response.Redirect will cause a ThreadAbort exception. To resolve this use
VB.NET


Response.Redirect(url,false) 

C#


Response.Redirect(url,false) ;

Share with

Related FAQs

Couldn't find the FAQs you're looking for?

Please submit your question and answer.