您的位置:首页 > 编程语言 > ASP

asp.net mvc 清除视图缓存

2013-12-03 17:48 295 查看
asp.net mvc 清除视图缓存,消除缓存方法

public ActionResult SearchCommunityPopulation()
{
//禁止页面被缓存
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetExpires(DateTime.Today.AddYears(-2));
return PartialView("Index", 数据源);
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: