相当于 ASP.NET 中的 ASP.NET MVC TempData

发布于 2024-11-10 12:38:30 字数 76 浏览 2 评论 0原文

在 ASP.NET MVC 中,有一个 TempData 可以将数据一次从一个页面传递到另一页面。在 ASP.NET 中与此等效的是什么?

In ASP.NET MVC, there's a TempData which can pass data one time from one page to another. What's the equivalent for this in ASP.NET?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

携君以终年 2024-11-17 12:38:30

没有直接的等效项(即仅传递到下一页的数据)。

您可以使用Session并在接收页面将其清除。

There is no direct equivalent (that is, data that is only passed to the next page).

You can use Session and clear it out on the receiving page.

昨迟人 2024-11-17 12:38:30

您可以使用 Session 或 Viewstate 在 ASP.NET 应用程序中的页面之间传递数据。

You can use either Session or Viewstate to pass data between pages in ASP.NET application.

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