症状:
如果您使用Response.End/u3001 Response.Redirect或Server.Transfer方法,将引发ThreadAbortException 异常/u3002您可以使用try-catch语句可以捕捉此异常。
?
原因:
Response.End方法结束执行页,并将执行切换到应用程序的事件管道中的Application_EndRequest事件。Response.End之后的代码行不会被执行。
因为这两种方法都会内部调用Response.End , Response.Redirect和Server.Transfer方法中发生此问题。
?
解决方案:
若要变通解决此问题,请使用下列方法之一:
- 对于Response.End,调用HttpContext.Current.ApplicationInstance.CompleteRequest方法,而不是Response.End ,可以绕过对Application_EndRequest事件的代码执行。
-
对于Response.Redirect,使用重载, Response.Redirect (bool endResponse 字符串 url)传递false以取消内部调用Response.End的endResponse参数。例如:
Response.Redirect ("nextpage.aspx", false);
- 对于Server.Transfer,而是使用Server.Execute方法。
?