c# 在外引用Session
时间: 2023-12-12 12:05:16 浏览: 88
C#不同域名之间的Session共享
在 C# 中,可以通过 HttpContext.Current.Session 属性来引用 Session 对象。可以使用以下代码示例:
```
// 获取 Session 中的值
string value = HttpContext.Current.Session["key"] as string;
// 设置 Session 中的值
HttpContext.Current.Session["key"] = "value";
```
需要注意的是,引用 Session 对象前,需要确保 HttpContext.Current 不为 null。通常情况下,HttpContext.Current 可以在 ASP.NET 应用程序中的任何位置使用。
阅读全文