try里Response.end()问题

问题

在xxx.aspx.cs中处理异步请求,大致代码如下:

try里Response.end()问题

但会发现始终会进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/

*:http://*.com/questions/20988445/how-to-avoid-response-end-thread-was-being-aborted-exception-during-the-exce

上一篇:MVC验证码的编写


下一篇:[面试专题]Web缓存详解