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方法

Response.End抛出ThreadAbortException 异常

Response.End() 被认为是有害的吗?

Response.End报错

node.js中的http.response.end方法使用说明

response.end("程序员的秋天"); }).listen(8000);