Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以在不使用 Session 的情况下保留一些数据并在任何视图的任何位置使用它。
情况是,我需要在我的应用程序所有页面的顶部显示 UserName,并且不想使用任何 State 变量来保留该数据。
请建议。
嗯...如果您的用户登录并在您的服务器上启动一个会话,那么无论如何您都将数据保存在状态变量中。另一方面,如果这只是一个外观问题,为什么不使用 cookie?
如果你想从 View 访问你的数据,你可以使用 ViewBag (MVC4),如果你想在 Controller 之间交换数据,你可以使用 Temp。