gpt4 book ai didi

c# - 为什么我在运行 Response.Redirect() 时会抛出异常?

转载 作者:太空狗 更新时间:2023-10-29 20:46:25 24 4
gpt4 key购买 nike

我正在学习 ASP.NET 并且正在研究 QueryStrings。

我正在查看的一个示例将一个按钮 Hook 到重定向调用:

    protected void btnSubmit_Click(object sender, EventArgs e)
{
try
{
//throws ThreadAbortException: "Thread was being aborted"
Response.Redirect("Form2.aspx");
}
catch (Exception Ex)
{
System.Diagnostics.Debug.WriteLine(Ex.Message);
}
}

为什么这里会抛出ThreadAbortException?那是正常的吗?我应该为此做点什么吗?异常一般都不是什么好东西,所以看到这里我心惊胆战。

最佳答案

这是设计使然。这KB article描述行为(也适用于 Request.End()Server.Transfer() 方法)。

Response.Redirect() 存在重载:

Response.Redirect(String url, bool endResponse)

如果您传递 endResponse=false,则不会抛出异常(但运行时将继续处理当前请求)。

如果endResponse=true(或者如果您使用不带 bool 参数的重载),将抛出异常并立即终止当前请求。

关于c# - 为什么我在运行 Response.Redirect() 时会抛出异常?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1364645/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com