gpt4 book ai didi

asp.net-mvc-2 - ASP.NET MVC 2.0 session 状态连接错误处理

转载 作者:行者123 更新时间:2023-12-03 09:00:56 25 4
gpt4 key购买 nike

我有一个使用SQL Server作为 session 状态管理器的MVC 2.0站点。我正在尝试解决网络错误,该错误导致我的站点失去与SQL Server本身的连接。

为了进行非常基本的测试,我在Global.asax文件中使用Application_Error(object sender,EventArgs e)记录错误,然后将用户转发到常规错误页面。当转发到常规错误页面时, session 状态管理器尝试再次连接并在无法导致再次调用Application_Error()函数时引发异常时出现问题。这导致无限循环。

有没有一种方法可以针对 Controller 中的给定操作禁用任何尝试连接到 session 状态SQL Server的尝试?

最佳答案

对于希望将来使用的人,我通过在global.asax文件中使用以下代码解决了这一问题:

protected void Application_Error(object sender, EventArgs e) {
// Get Exception
var ex = Server.GetLastError();
// Looking for SqlTimeout, which is inner exception to HttpExecption
// when it occurs.
if (!typeof(HttpException).IsInstanceOfType(ex))
return;
// Clear response.
HttpContext.Current.Response.Clear();
// Check inner
if (ex.InnerException != null && typeof(SqlException).IsInstanceOfType(ex.InnerException)) {
// Clear error
Server.ClearError();
// Redirect to basic html error.
Server.Transfer("/site_down.html", false);
}
else {
// Send to general error page.
Response.Redirect("~/error/", true);
}
}

关于asp.net-mvc-2 - ASP.NET MVC 2.0 session 状态连接错误处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4431707/

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