TempData[] 被擦除

发布于 2024-07-24 14:31:05 字数 142 浏览 5 评论 0原文

我在 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 技术交流群。

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

发布评论

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

评论(2

逆光下的微笑 2024-07-31 14:31:06

来自 ASP.NET MVC:在没有 Web 表单的情况下构建 Web 应用程序

TempData 是一个字典,很像
无类型的 ViewData。 但是,那
TempData 的内容仅存在一段时间
单个请求然后他们
已删除。

From ASP.NET MVC: Building Web Apps without Web Forms:

TempData is a dictionary, much like
the untyped ViewData. However, the
contents of TempData only live for a
single request and then they're
deleted.

私野 2024-07-31 14:31:06

我相信 TempData 仅在后续请求中持续存在。 您可能想看看 这个

I believe TempData only persists for the subsequent request. You might want to have a look at this.

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