概述
在try catch中使用Response.End()抛"线程被中止"异常,Response.Redirect()和Server.Transfer()也会出现这个问题.
如:(
Code
try
{
if (DoSomeThing())
{
Response.End();
//HttpContext.Current.ApplicationInstance.CompleteRequest();
}
//DoOtherThing不写在else里只是为了说明问题
DoOtherThing();
}
catch (System.Threading.ThreadAbortException ex)
{
WirteLog(ex);
}
catch (Exception ex)
{
WirteLog(ex);
}
try
{
if (DoSomeThing())
{
Response.End();
//HttpContext.Current.ApplicationInstance.CompleteRequest();
}
//DoOtherThing不写在else里只是为了说明问题
DoOtherThing();
}
catch (System.Threading.ThreadAbortException ex)
{
WirteLog(ex);
}
catch (Exception ex)
{
WirteLog(ex);
}
)
如果不用catch (System.Threading.ThreadAbortException ex),就会抛"线程被中止"异常,
如果不用catch (System.Threading.ThreadAbortException ex),而用HttpContext.Current.ApplicationInstance.CompleteRequest 代替Response.End(),则后面的DoOtherThing()还是会继续执行.
要根据实际需要选择具体做法.
转载于:https://www.cnblogs.com/gergulo/archive/2009/05/12/1455241.html
最后
以上就是积极楼房为你收集整理的在try catch中使用Response.End()抛"线程被中止"异常的全部内容,希望文章能够帮你解决在try catch中使用Response.End()抛"线程被中止"异常所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复