谁能告诉我如何在 Mvc3 中创建会话上下文?我是 Mvc 的新手,想详细了解如何创建会话和语法。
提前致谢。
保存会话
@{ HttpContext.Current.Session["Session"] = "Test"; }
获取会话
@HttpContext.Current.Session["Session"]
使用HttpContext
类来访问Session
等等。您不需要实例化会话,这会自动发生。您需要做的就是在代码中引用它。
HttpContext.Current.Session["MyVariable"] = "Something";
@HttpContext.Current.Session["MyVariable"].ToString()
http://msdn.microsoft.com/en-us/library/system.web.httpcontext.aspx