我有一个混合(使用MVC和经典ASP页面)ASP(C#)Net Application 并且需要为MVC和遗留代码实现常见的错误处理; 也就是说,我必须检测无效的URL并将无效请求重新路由到 主页或登录页面(取决于用户是否登录)。
我在'Application_Error'中添加了错误处理代码(参见下面的代码)。
问题如下:登录用户ID保存在Session对象中 对于某些无效的URL,会话对象变为空,其中:“会话状态在此上下文中不可用”
例如:
对于以下URL,会出现Session对象:
1. http://myserver:49589/test/home/index
2. http://myserver:49589/test/home/in
3. http://myserver:49589/test/ho
但是对于以下URL,会话对象为null:
4. http://myserver:49589/te
所以,问题是当我拼错请求中的文件夹名称时,会话对象变为空,以及我如何解决这个问题。
路线图如下:
context.MapRoute(
"default",
"test/{controller}/{action}/{id}",
new { action = "Index", id = UrlParameter.Optional }
);
protected void Application_Error(object sender, EventArgs e)
{
Exception exception = Server.GetLastError();
Response.Clear();
HttpException httpException = exception as HttpException;
if (httpException != null) // Http Exception
{
switch (httpException.GetHttpCode())
{
case 400: // Bad Request
case 404: // Page Not Found
case 500: // Internal Server Error
{
// Clear the error on server.
Server.ClearError();
ServerConfiguration scfg = ServerConfiguration.Instance;
if (ConnxtGen.App.AppUtility.GetCurrentUserID() != -1)
{
Response.RedirectToRoute("Unity_default", new { controller = "Home", action = "Index" });
}
else
{
Response.Redirect(scfg.PagePath + "/login/login.aspx", false);
}
break;
}
default:
{
break;
}
}
}
// Avoid IIS7 getting in the middle
Response.TrySkipIisCustomErrors = true;
}
答案 0 :(得分:1)
您应该了解的一点是,会话变量仅在HttpApplication.AcquireRequestState事件发生后才可用。
在您的问题中,您希望在会话中获取某些信息的时刻在Asp.Net页面生命周期的过程中为时过早。
我发现这篇文章肯定会更好地解释会话对象何时可用:
Asp.net What to do if current session is null?
这是一篇很棒的文章,详细解释了Asp.Net页面生命周期的整个内部过程: