17

我收到以下异常:

System.Threading.ThreadAbortException:线程被中止。
在 System.Threading.Thread.AbortInternal() 在 System.Threading.Thread.Abort(Object stateInfo) 在 System.Web.HttpResponse.End() 在 System.Web.HttpResponse.Redirect(String url, Boolean endResponse)
在 System.在taxi_selection.lnkbtnconfirm_Click(Object sender, EventArgs e) 的Web.HttpResponse.Redirect(String url)

我发现解决方案是使用:

Response.Redirect("home.aspx",false);

但再次发生此错误。

对此有什么好的解决方案?

我的代码片段:

try
{
    Decimal Amount = 0;
    Int64 CabId = 0;
    String CabName = "";
    String CarImage = "";

    foreach (DataListItem gr in dtlstcars.Items)
    {
        RadioButton objcheck = (RadioButton)gr.FindControl("rdbtncarchecked");
        if (objcheck.Checked == true)
        {
            Literal ltrid = new Literal();
            ltrid = (Literal)gr.FindControl("ltrid");

            Label lbtaxiname = (Label)gr.FindControl("lbtaxiname");
            Label lbonewaycarprice = (Label)gr.FindControl("lbonewaycarprice");
            Label lbtwowaycarprice = (Label)gr.FindControl("lbtwowaycarprice");
            Image imgcar = (Image)gr.FindControl("imgcar");

            if (ltrid != null && lbtaxiname != null && imgcar != null && lbonewaycarprice != null && lbtwowaycarprice != null)
            {
                if (lbrootype.Text == "One")
                {
                    Amount = Convert.ToDecimal(lbonewaycarprice.Text);
                }
                else
                {
                    Amount = Convert.ToDecimal(lbtwowaycarprice.Text);
                }
            }
            CabId = Convert.ToInt64(ltrid.Text);
            CabName = lbtaxiname.Text;
            CarImage = imgcar.ImageUrl;
        }
   }
   if (lbroottype.Text != String.Empty && lbrouteid.Text != String.Empty && lbfrom.Text != String.Empty && lbpickupdate.Text != String.Empty && lbto.Text != String.Empty && lbpickupdate.Text != String.Empty && lbpickuptime.Text != String.Empty)
   { 
        Session.Add("BookingDetail", BookingDetail(lbroottype.Text, Convert.ToInt64(lbrouteid.Text), lbfrom.Text, lbto.Text, Convert.ToDateTime(lbpickupdate.Text), lbpickuptime.Text, Convert.ToDateTime(lbreturndate.Text), String.Empty, CabId, CabName, CarImage, Amount, txtPickupaddress.Text, txtDropaddress.Text, txtlandmark.Text, txtname.Text, ddmobilestdcode.SelectedValue, txtmobileno.Text, ddalternatestdcode.SelectedValue, txtalternateno.Text, txtemail.Text, lbdays.Text));//3
       Session.Remove("cart");
       Session.Remove("editcart");
       Response.Redirect("confirm");
   }
   else
   {
       Response.Redirect("home");
   }
}
catch (Exception ext)
{
    String msg = ext.Message;
    da.InsertRecordWithQuery("insert error_tbl values('" + msg + "')");
}
4

3 回答 3

30

http://support.microsoft.com/kb/312629

正如您在此处看到的,问题是您试图在 try/catch 块中使用 response.redirect。它抛出了一个异常。

您将呼叫更改为的解决方案Response.Redirect(url, false)应该有效。您需要确保在每次 Response.Redirect 调用时都执行此操作。

另请注意,这将继续执行,因此您必须处理它(防止它以其他方式继续执行)。

于 2013-02-01T05:51:18.003 回答
13

当您不让页面的其余部分继续运行时,这就是重定向的工作方式。它停止线程并抛出该中止异常。您可以简单地将其忽略为:

try
{
    Response.Redirect("newpage.aspx", true);
}
catch (System.Threading.ThreadAbortException)
{
    // ignore it
}
catch (Exception x)
{

}

注意力

如果您在不停止其余处理的情况下调用重定向,则可以使用NoRedirect之类的插件停止重定向过程的黑客可以看到您页面的其余部分。!

为了证明我的观点,我提出一个问题:Redirect to a page with endResponse to true VS CompleteRequest and security thread

于 2013-02-01T05:50:59.493 回答
4

Response.Redirect不指定endResponse参数 as false(默认为true) 将在Response.End()内部调用,因此将触发 aThreadAbortException停止执行。

这里推荐两件事之一:

  1. 如果您需要结束响应,请不要在 try/catch 中执行此操作。这将导致重定向失败。

  2. 如果您不需要结束响应,请改为调用:

    Response.Redirect(url, false);

在 try/catch 中:

try {
    // do something that can throw an exception
    Response.Redirect(url, false);
    HttpContext.Current.ApplicationInstance.CompleteRequest();
} catch (SomeSpecificException ex) {
    // Do something with the caught exception
}

为了避免回发处理和 HTML 呈现,您需要做更多的事情:

http://web.archive.org/web/20101224113858/http://www.c6software.com/codesolutions/dotnet/threadabortexception.aspx

于 2013-02-01T05:51:00.553 回答