如何在 MVC 3 Web 应用程序中使用 ASP.NET Session 对象?
我需要在 MVC 3 Web 应用程序中使用会话,就像我以前在旧的 ASP.NET Web 应用程序中所做的那样。我需要保存一些值,然后从任何控制器和所有其他视图访问它。
请给我一个遵循最佳实践的非常简单的例子。
我是 MVC 开发新手,从 MVC 3 开始。
I need to use session in my MVC 3 web app like I used to do in my old ASP.NET web app. I need to save some values, and then access it from any of my controllers and all other views.
Please give me a very simple example following the best practices.
I am new in MVC development and started with MVC 3.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用会话的方式与在 Web 表单中使用的方式相同。
在您的控制器中,您可以简单地使用
Session
对象。您可以将模型的状态保存在Session
中,并将结果传递到您的视图。You use session the same way you do in webforms.
In your controllers you can simply use the
Session
object. You could save the state of a model inSession
and pass the result to your view.mvc 和 webform 的基本
session
用法保持相同。除此之外,您还可以在控制器和视图之间存储
ViewData
、ViewBag
请参阅 这篇文章用于创建在 mvc 中使用强类型会话的帮助程序类。
Basic
session
usage remains same for both mvc and webforms.In addition to that you have
ViewData
,ViewBag
also to store between controller and viewRefer to this article for creating a helper class for using strongly typed sessions in mvc.