标签:style blog http color io os 文件 sp div
实现IHttpHandler接口的同时必须继承IRequiresSessionState接口,才能拿到session
public class HttpHandler: IHttpHandler, IRequiresSessionState { public void ProcessRequest(HttpContext context) { string session=context.Session["NAME"].ToString(); }
解决在.ashx文件中判断Session 总是NULL的方法
标签:style blog http color io os 文件 sp div
原文地址:http://www.cnblogs.com/kangjing/p/4001485.html