相当于 ASP.NET 中的 ASP.NET MVC TempData
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有直接的等效项(即仅传递到下一页的数据)。
您可以使用
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.您可以使用 Session 或 Viewstate 在 ASP.NET 应用程序中的页面之间传递数据。
You can use either Session or Viewstate to pass data between pages in ASP.NET application.