c# – try / catch块中的Response.Redirect异常

前端之家收集整理的这篇文章主要介绍了c# – try / catch块中的Response.Redirect异常前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
说,我有一个try / catch块封装了一大块代码,然后在其中的某个地方我需要调用Response.Redirect:
protected void ButtonGo_Click(object sender,EventArgs e)
{
    try
    {
        using(lockingMethod)
        {
            //Code...

            //Somewhere nested in the logic
            Response.Redirect(strMyNewURL);

            //More code...
        }
    }
    catch(Exception ex)
    {
        LogExceptionAsError(ex);
    }
}

在这种情况下会发生什么是Response.Redirect抛出一个异常,一些关于终止线程的事情,我认为这是该方法的“正常事件流”,但它作为错误记录在我的LogExceptionAsError中.所以我很好奇,有没有办法使Response.Redirect不抛出异常?

解决方法

尝试使用替代版本的Response.Redirect
Response.Redirect(strMyNewURL,false);

它将终止当前页面加载.

原文链接:https://www.f2er.com/csharp/244588.html

猜你在找的C#相关文章