使用Response.Redirect()时获取线程中止异常

时间:2013-08-27 12:23:29

标签: c# asp.net .net

我在更新面板下的页面中编写了以下代码。

protected void myGrid_RowCommand(object sender, GridViewCommandEventArgs e)
{
    try
    {
        if (e.CommandName =="EditNames")
        {
            long lSelectedName = Convert.ToInt64(e.CommandArgument);
            Session["SelectedItem"] = lSelectedName;
            Response.Redirect("EditItem.aspx");
        }
        else if (e.CommandName =="DeleteNames")
        {
            long lSelectedName = Convert.ToInt64(e.CommandArgument);
            ValidName.DeleteItem(lSelectedName);

            ScriptManager.RegisterStartupScript(this, GetType(), "Key", "alert('Name deleted sucessfully')", true);
        }
    }
    catch (System.Threading.ThreadAbortException)
    {

    }
    catch (Exception ex)
    {
        Error handling code...
    }
}

在这里,我在重定向时遇到线程中止异常。但是,我通过使用错误处理程序System.Threading.ThreadAbortException来解决它。

但我不确定为什么在重定向时出现错误。即使我解决了这个问题,我想知道我编码的方式是否有任何错误,或者有任何方法可以阻止错误发生。

提供您的意见......

请注意,该页面位于AJAX UPDATE PANEL。

4 个答案:

答案 0 :(得分:27)

请阅读这篇文章 - http://blogs.msdn.com/b/tmarq/archive/2009/06/25/correct-use-of-system-web-httpresponse-redirect.aspx

最好不要结束请求,而是通过调用Context.ApplicationInstance.CompleteRequest()绕过请求执行管道。

所以你的代码看起来像这样:

Response.Redirect("TargetPage", false);        //write redirect
Context.ApplicationInstance.CompleteRequest(); // end response

答案 1 :(得分:23)

  

即使我解决了这个问题,我想知道我编码的方式是否有任何错误

没错,你做得很好。

预计会出现此错误。抛出它是因为重定向时服务器线程实际上已中止。来自MSDN documentation

  

如果为endResponse参数指定true,则此方法为原始请求调用End方法,该方法在完成时抛出ThreadAbortException异常。

以及overload you're using:

的文档
  

重定向调用End,在完成时抛出ThreadAbortException异常。

答案 2 :(得分:1)

这种情况正在发生,因为您正在重定向try / catch块内部。不要这样做。

答案 3 :(得分:-1)

在重定向方法中提及false就足够了,比如 Response.Redirect(" TargetPage",false);