我使用ajax和部分视图(ascx)加载数据列表
但我有一个问题:我的回复是缓存的.
我尝试在ascx文件中编写Responce.Cache.SetExpires(DateTime.Now.AddDays(-1))但是没有帮助
在ASP.NET WebForms中,我通过在codebehind中编写Responce.Cache.SetExpires(DateTime.Now.AddDays(-1))来解决这个问题.
所以我想知道在哪里可以编写Responce.Cache.SetExpires(DateTime.Now.AddDays(-1))来禁用缓存.
最佳答案
使用jQuery?
原文链接:https://www.f2er.com/jquery/428508.html$.ajax({
cache:false,...
});
或Controller / Action设置OutputCacheAttribute.