一般处理程序中使用Session出现未将对象引用设置到对象的实例

遇到问题:未将对象引用设置到对象的实例

那就在你的一般处理程序中加入红色背景的代码吧

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data;
using System.Web.SessionState;
//引用命名空间
namespace gl.webweb.gl_web.ashx
{
//实现接口
public class login : IHttpHandler, IRequiresSessionState
{ public void ProcessRequest(HttpContext context)
{ } public bool IsReusable
{
get
{
return false;
}
}
}
}
上一篇:asp.net 中Session的运用,及抛出错误“未将对象引用设置到对象的实例”


下一篇:2014-08-26 解决HttpContext.Current.Session在ashx文件中出现“未将对象引用设置到对象的实例”的问题