正在中止线程 的问题解决

原文链接: http://www.cnblogs.com/TSPWater/archive/2011/01/05/1926358.html
错误描述:正在中止线程
如果使用  Response.End Response.Redirect  或  Server.Transfer  方法,将出现  ThreadAbortException  异常。您可以使用  try-catch  语句捕获此异常。

原因

Response.End 方法终止页的执行,并将此执行切换到应用程序的事件管线中的 Application_EndRequest 事件。不执行 Response.End 后面的代码行。

此问题出现在 Response.Redirect 和 Server.Transfer 方法中,因为这两种方法均在内部调用 Response.End。

要解决此问题,请使用下列方法之一:

1、对于 Response.End,调用 HttpContext.Current.ApplicationInstance.CompleteRequest 方法而不是 Response.End 以跳过 Application_EndRequest 事件的代码执行 

2、对于 Response.Redirect,请使用重载 Response.Redirect(String url, bool endResponse),该重载对 endResponse 参数传递 false 以取消对 Response.End 的内部调用。例如: Response.Redirect ("nextpage.aspx", false); 


转载于:https://www.cnblogs.com/TSPWater/archive/2011/01/05/1926358.html

猜你喜欢

转载自blog.csdn.net/weixin_30487701/article/details/95302675