我使用的代码如下:
[OutputCache(Duration = 86400, VaryByParam = "none")]
public ActionResult Index() {
}
一切都运行良好但是有时候当我使用以下方法重定向到索引页面时,我想强制MVC获取新页面:
RedirectToAction("index", "home");
这可能吗?有什么方法可以使缓存无效吗?
答案 0 :(得分:1)
您可以尝试以下方式:
HttpResponse.RemoveOutputCacheItem("/Home");