session无法赋值的问题
贴一下代码. 在handler.ashx文件中.简略的写一下就是这个意思.
在执行这一行的时候报错,未将对象的引用设置到对象的实例. 这是怎么个情况
C# code
public void ProcessRequest (HttpContext context) {
HttpContext.Current.Session["loginAccount"] = "12345";
}
------解决方案--------------------handler.ashx文件,需要继承 IRequiresSessionState
------解决方案--------------------引用
using System.Web.SessionState;
public class Handler : IHttpHandler, IRequiresSessionState
------解决方案--------------------=》
C# code
context.Session["loginAccount"] = "12345";