把Response.Redirect放到TryCatch中出的错误

把Response.Redirect放在Try Catch中会出现以下错误:
Unable to evaluate expression because the code is optimized or a native frame is on top of the call stack
             try
            
{
                doSth();
                Response.Rediret(
"a.html");
            }

            
catch   { }

查了一下,原来是因为Response.Redirect会默认调用Respons.End(),而Respons.End方法会 停止页的执行,并将该执行变换到应用程序的事件管线中的 Application_EndRequest 事件,所以Response.Redirect后面的代码(其实是Response.End后的代码)就不会执行了。

解决问题的办法是:调用Response.Redirect的重载函数 Response.Redirect(String url, bool endResponse),参数为false。

如果try中有Response.End(),解决方法为: 使用 ApplicationInstance.CompleteRequest 方法而不用Response.End,以避开Application_EndRequest 事件。

转载于:https://www.cnblogs.com/vagerent/archive/2008/05/08/1188074.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值