45fan.com - 路饭网

搜索: 您的位置主页 > 电脑频道 > 编程代码 > 阅读资讯:如何通过ASP.NET在底层类库中获取SessionC#类中获取Session?

如何通过ASP.NET在底层类库中获取SessionC#类中获取Session?

2016-04-08 08:12:10 来源:www.45fan.com 【

如何通过ASP.NET在底层类库中获取SessionC#类中获取Session?

类库中获取Session首先要添加引用

如何通过ASP.NET在底层类库中获取SessionC#类中获取Session?

如何通过ASP.NET在底层类库中获取SessionC#类中获取Session?

获取Session

 

复制代码 代码如下:

string user = (string)HttpContext.Current.Session["user"];

 

获取Page

 

复制代码 代码如下:

System.Web.UI.Page page = (System.Web.UI.Page)HttpContext.Current.Handler;

 

获取当前 Request Response 等对象都是在这里

 

复制代码 代码如下:

HttpResponse response = System.Web.HttpContext.Current.Response;
HttpRequest request = System.Web.HttpContext.Current.Request;

 


本文地址:http://www.45fan.com/bcdm/45354.html
Tags: ASP.NET 类库 底层
编辑:路饭网
推广内容
推荐阅读
热门推荐
推荐文章
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部