如何在 MVC 3 Web 应用程序中使用 ASP.NET Session 对象?

发布于 2024-11-08 17:16:01 字数 153 浏览 0 评论 0原文

我需要在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

病女 2024-11-15 17:16:01

使用会话的方式与在 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 in Session and pass the result to your view.

送你一个梦 2024-11-15 17:16:01

mvc 和 webform 的基本 session 用法保持相同。
除此之外,您还可以在控制器和视图之间存储 ViewDataViewBag

请参阅 这篇文章用于创建在 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 view

Refer to this article for creating a helper class for using strongly typed sessions in mvc.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文