Response.End方法导致线程中断

ThreadAbortException Occurs If You Use Response.End, Response.Redirect, or Server.Transfer
微软的解决方案是:
HttpContext.Current.ApplicationInstance.CompleteRequest 替代Response.End就可以了。

其他的请参照一下官方说明。
http://support.microsoft.com/default.aspx?scid=kb;EN-US;312629
原文地址:https://www.cnblogs.com/si812cn/p/1559555.html