TempData[] 被擦除
我在 TempData 中存储了一个整数,在浏览我的网站 30-60 秒后,它会因未知原因定期被擦除。
我在设置值的地方有一个断点,并且它从未被设置为空,但不知何故,TempData 中的值被清空了。
知道为什么会发生这种情况吗?
I have a integer stored in TempData, and it is getting periodically wiped for an unknown reason after 30-60 seconds of browsing around my site.
I have a break point on the place where the value is set and its never being set to null, yet somehow that value in TempData is getting nulled.
Any idea why this is happening?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自 ASP.NET MVC:在没有 Web 表单的情况下构建 Web 应用程序:
From ASP.NET MVC: Building Web Apps without Web Forms:
我相信 TempData 仅在后续请求中持续存在。 您可能想看看 这个。
I believe TempData only persists for the subsequent request. You might want to have a look at this.