Session["loginName"]为空,无法toString();
context.Session["Id"] “context.Session”引发了“System.NullReferenceException”类型的异常
base {System.SystemException}: {"该方法的指针为空。"}
查阅MSDN得到ashx文件要使用Session,必须实现Session接口;
using System;
using System.Web;
using System.Web.SessionState;
//第一步:导入此命名空间 public class checkCookie : IHttpHandler ,IRequiresSessionState
//第二步:实现接口 到此就可以像平时一样用Session了 { public void ProcessRequest (HttpContext context) { //------------ }