asp.net 类库中获取session c#类中获取session 1. 先引入命名空间 using System.Web; using System.Web.SessionState; 在使用HttpContext.Current.Session获取session HttpContext.Current.Session 2. Common.cs文件 using System; using System.Collections.Generic; using System.Linq; usin
因为业务要异步通过IHttpHandler获得数据,但还要根据当前登录人员的session过滤,因此要在在IHttpHandler中获取session 方法是HttpHandler容器中如果需要访问Session,必须实现IRequiresSessionState接口,这只是一个标记接口,没有任何方法. 声明时加上 public class MyHandler : IHttpHandler,IRequiresSessionState 具体httphandler介绍可见 一点一点学ASP.NET之
1.在应用程序中获取session,System.Web.HttpContext.Current.Session: 2.命名空间如下:IRequiresSessionState 调用方法 public class ProjectInfo : IHttpHandler,System.Web.SessionState.IRequiresSessionState{ }