gpt4 book ai didi

asp.net - Response.Redirect 和线程被中止错误?

转载 作者:行者123 更新时间:2023-12-02 05:49:34 25 4
gpt4 key购买 nike

今天下午我的错误日志中出现了这个错误线程正在中止。

导致此错误的代码是:

Response.Redirect("Login.aspx", true);

如果我将 bool 值更改为 false,错误日志将变为空,并且该错误不再出现,但程序将停止工作。

如果我保持原样,我会收到这个错误,就像令人讨厌的一样。

我想知道使用 Response.Redirect 传递 true 作为 endResponse 参数的值的替代方法。

最佳答案

我捕获了这个异常并接受了它,因为 ASP.NET 使用异常来进行流控制,而不是用于特殊情况。

try
{
// Do stuff.
}
catch(ThreadAbortException)
{
// Do nothing. ASP.NET is redirecting.
// Always comment this so other developers know why the exception
// is being swallowed.
}
catch(OtherExceptionTypes ex)
{
// Log other types of exception.
}

关于asp.net - Response.Redirect 和线程被中止错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4368640/

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