C#一般处理程序获取Session
时间: 2023-12-12 07:04:46 浏览: 159
详解C# 中Session的用法
在C#中,可以通过以下方式获取Session:
1. 使用HttpContext对象获取Session:
```
HttpContext.Current.Session["key"]
```
2. 使用Page对象获取Session:
```
Session["key"]
```
注意:获取Session前需要确保Session已经被启用,即需要在Web.config文件中添加以下配置:
```
<system.web>
<sessionState mode="InProc" timeout="20"></sessionState>
</system.web>
```
阅读全文