开发者

Accessing SessionState from custom MvcRouteHandler

public class CustomRoutingHandler : MvcRouteHan开发者_C百科dler
{
  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
  }
}


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

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜