Asp.Net范围特定的请求ThreadAbortException线程正在中止

时间:2010-07-03 14:13:25

标签: c# request threadabortexception

我正在使用http://pastebin.com/aK0zcxMNhttp://dotnetslackers.com/articles/aspnet/Range-Specific-Requests-in-ASP-NET.aspx版本)的课程来保护下载免受水蛭影响并提供简历。它工作正常但不时我得到

System.Threading.ThreadAbortException: Thread was being aborted.
at System.Web.UnsafeNativeMethods.EcbFlushCore(IntPtr pECB, Byte[] status, Byte[] header, Int32   keepConnected, Int32 totalBodySize, Int32 numBodyFragments, IntPtr[] bodyFragments, Int32[] bodyFragmentLengths, Int32 doneWithSession, Int32 finalStatus, Int32 kernelCache, Int32 async, ISAPIAsyncCompletionCallback asyncCompletionCallback)
at System.Web.Hosting.ISAPIWorkerRequestInProcForIIS6.FlushCore(Byte[] status, Byte[] header, Int32 keepConnected, Int32 totalBodySize, Int32 numBodyFragments, IntPtr[] bodyFragments, Int32[] bodyFragmentLengths, Int32 doneWithSession, Int32 finalStatus, Boolean& async)
at System.Web.Hosting.ISAPIWorkerRequest.FlushCachedResponse(Boolean isFinal)
at System.Web.Hosting.ISAPIWorkerRequest.FlushResponse(Boolean finalFlush)
at System.Web.HttpResponse.Flush(Boolean finalFlush)
at System.Web.HttpResponse.Flush()
at ResumeDownload.ProcessDownload(String fileName, String headerFileName, String fileMimeType)
at FileDownloader.Page_Load(Object sender, EventArgs e)

我的网站是一个移动网站,有不同的移动浏览器,有不同的下载方法。它们通常也通过运营商网关连接,所以我猜这与客户端断开连接或wap代理问题有关。

我想做的是如何阻止这种情况发生。我不想尝试catc和igonore它。我读过关于

的文章
catch (ThreadAbortException ex)

Thread.ResetAbort();

但无法成功地将其实现到类中。有没有人用类似的代码来保护水蛭?

1 个答案:

答案 0 :(得分:1)

如果您正在使用

Response.Redirect("Some URL");

然后尝试这个

Response.Redirect("Some URL",false);

在这种情况下,响应将不会结束,您不需要使用catch块来处理它。但要确保你的流量不会打扰。