HttpContext.Current.Session为null的问题

在网上看了很多,最后还是自己找到了答案!!!

通过post请求将用户信息提交到处理页面(*.ashx),然后通过处理页面调用类库中某个类下的登录方法

之前当调用登录方法时做了判断:if (HttpContext.Current.Session != null) 这个时候Session始终的null

于是将该类实现了接口:IRequiresSessionState (using System.Web.SessionState;)

结果Session还是null。。。

接着我把处理页也继承接口:public class ActionsHander : IHttpHandler, IRequiresSessionState

问题解决了!!!

 .

你可能感兴趣的:(asp.net)