谁能告诉我如何在Mvc3中创建会话上下文?我是Mvc的新手,想知道如何创建会话和语法的细节。
提前谢谢。
发布于 2013-07-08 19:40:00
保存会话的步骤
@{ HttpContext.Current.Session["Session"] = "Test"; }
获取会话
@HttpContext.Current.Session["Session"]
https://stackoverflow.com/questions/17525629
相似问题