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.
我在服务器端有 c# 属性并在 HTTP 请求上设置它。该属性值是否会在另一个请求中持续存在?对不起,如果它是愚蠢的?
一般来说,没有。如果它是存储在会话变量中的某个属性(例如在控制器TempData或应用程序会话数据中),或者如果您有一些其他自定义机制专门保留跨请求的值,它将持续存在。
TempData
有关您的选项的概述,请参阅 MSDN 上的状态管理建议页面。