try里Response.end()问题
Posted talentzemin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了try里Response.end()问题相关的知识,希望对你有一定的参考价值。
问题
在xxx.aspx.cs中处理异步请求,大致代码如下:
但会发现始终会进catch。
原因
Response.End()会引发ThreadAbortException。
解决方案
使用HttpContext.Current.ApplicationInstance.CompleteRequest();代替
参考
官方文档:https://msdn.microsoft.com/zh-cn/library/system.web.httpresponse.end.aspx
博客园:https://q.cnblogs.com/q/31506/
stackoverflow:http://stackoverflow.com/questions/20988445/how-to-avoid-response-end-thread-was-being-aborted-exception-during-the-exce
以上是关于try里Response.end()问题的主要内容,如果未能解决你的问题,请参考以下文章
Response.End抛出ThreadAbortException 异常