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 中刷新/重新加载页面而不实际加载页面?我需要每 5 分钟重新加载一次页面,但这不会被任何用户加载。
谢谢
最简单的方法是使用html 元标记,指示页面在给定时间间隔(以秒为单位)后刷新:
<meta http-equiv="refresh" content="30" />
听起来您想使用 ASP.Net 缓存。使用带有持续时间的 @OutputCache 指令。
设置页面的可缓存性