在Try / Catch Block中使用Response.Redirect(url)

时间:2012-09-10 19:54:28

标签: c# .net try-catch response.redirect

如果我对try / catch块中的错误的响应是将用户重定向到错误页面,则try / catch块的行为就像没有时出现错误一样。如果我改变它做其他事情,代码工作正常。

示例:

try
{
    //do this SQL server stuff
}
catch
{
   Response.Redirect(error.htm)
   //Change this to lblErr.Text = "SQL ERROR"; and the code in try works fine.
}

在另一篇文章中,我了解到Response.Redirect()方法有一个布尔重载。我尝试了true和false,并且try / catch块仍然表现得好像有错误。

这是什么交易?

4 个答案:

答案 0 :(得分:9)

当您使用Response.Redirect时,会抛出ThreadAbortException。因此,为了获得您所描述的结果,您需要修改代码,如下所示:

try  
{
   // Do some cool stuff that might break
}
catch(ThreadAbortException)
{

}
catch(Exception e)
{
  // Catch other exceptions
  Response.Redirect("~/myErrorPage.aspx");
}

答案 1 :(得分:4)

Response.Redirect("url");

通过设计,这将通过抛出异常来终止调用线程。

Response.Redirect("url", false);

将阻止抛出异常,但是会允许代码继续执行。

使用

Response.Redirect("url", false);
HttpContext.Current.ApplicationInstance.CompleteRequest();

将重定向用户并停止执行而不会抛出异常。

答案 2 :(得分:1)

您应该使用HandleError属性。

[HandleError]
public ActionResult Foo(){
    //...

    throw new Exception(); // or code that throws execptions

    //...
}

这样,异常会自动导致重定向到错误页面。

答案 3 :(得分:0)

你忘记了引号和分号:

Response.Redirect("error.htm");