从自定义 MvcRouteHandler 访问 SessionState

发布于 2024-11-16 19:26:45 字数 366 浏览 3 评论 0原文

public class CustomRoutingHandler : MvcRouteHandler
{
  protected override IHttpHandler GetHttpHandler(RequestContext requestContext)
  {

     requestContext.HttpContext.Session is NULL;
     //Is there any way to access Session from there ?

     return FindHttpHandler(requestContext);
     // In created handler Session is not null
  }
}
public class CustomRoutingHandler : MvcRouteHandler
{
  protected override IHttpHandler GetHttpHandler(RequestContext requestContext)
  {

     requestContext.HttpContext.Session is NULL;
     //Is there any way to access Session from there ?

     return FindHttpHandler(requestContext);
     // In created handler Session is not null
  }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嘿咻 2024-11-23 19:26:45

也许您遇到此问题:请参阅 http://www.heartysoft.com/ aspnet-routing-iis7-remember-modules

解决方案是删除并重新添加会话状态模块。

另请参阅相关的SO问题:路由时HttpContext.Current.Session为空请求

Perhaps you are encountering this issue: see http://www.heartysoft.com/aspnet-routing-iis7-remember-modules.

The solution is to remove and add session state module again.

Also see the related SO question: HttpContext.Current.Session is null when routing requests

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文