response.redirect 正在中止线程

参考网址:

http://wenqingluomo.blog.163.com/blog/static/79171740201111353556417/

 

问题描述:正在中止线程
问题原因:
Response.End 方法终止页的执行,并将此执行切换到应用程序的事件管线中的 Application_EndRequest 事件。不执行 Response.End 后面的代码行。
解决方案
要解决此问题,请使用下列方法之一: ? 对于 Response.End,调用 HttpContext.Current.ApplicationInstance.CompleteRequest 方法而不是 Response.End

以跳过 Application_EndRequest 事件的代码执行。 
? 对于 Response.Redirect,请使用重载 Response.Redirect(String url, bool endResponse),该重载对 endResponse 参数传递 false 以取消对

Response.End 的内部调用。例如: Response.Redirect ("nextpage.aspx", false);如果使用此替代方法,将执行 Response.Redirect 后面的代码。 
? 对于 Server.Transfer,请改用 Server.Execute 方法。 

 

总结:

  使用重载方法后,Response.Redirect后面应该return,防止代码在错误的环境下执行。

posted on 2015-01-29 14:53  aoun  阅读(773)  评论(0编辑  收藏  举报