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.
在 ASP.NET MVC 中,有一个 TempData 可以将数据从一个页面传递到另一个页面。这在 ASP.NET 中的等价物是什么?
没有直接的等价物(即只传递到下一页的数据)。
您可以Session在接收页面使用和清除它。
Session
您可以使用 Session 或Viewstate在 ASP.NET 应用程序的页面之间传递数据。