0

谁能告诉我如何在 Mvc3 中创建会话上下文?我是 Mvc 的新手,想详细了解如何创建会话和语法。

提前致谢。

4

2 回答 2

1

保存会话

@{ HttpContext.Current.Session["Session"] = "Test"; }

获取会话

@HttpContext.Current.Session["Session"]
于 2013-07-08T11:40:00.073 回答
0

使用HttpContext类来访问Session等等。您不需要实例化会话,这会自动发生。您需要做的就是在代码中引用它。

HttpContext.Current.Session["MyVariable"] = "Something"; 
@HttpContext.Current.Session["MyVariable"].ToString()

http://msdn.microsoft.com/en-us/library/system.web.httpcontext.aspx

于 2013-07-08T11:38:28.033 回答