课堂上的课程.我怎么才能访问?

Sur*_*har 1 asp.net

我在我的项目中添加了一个类,当我输入会话时,它不会进入intelliscense.会话可以在课程中使用吗?

her*_*ter 7

据我所知,你正在寻找

using System.Web;

// ...


var currentSession = HttpContext.Current.Session;
var myValue = currentSession["myKey"];
Run Code Online (Sandbox Code Playgroud)