摘要: asp.net mvc 清除视图缓存,消除缓存方法public ActionResult SearchCommunityPopulation(){ //禁止页面被缓存 Response.Cache.SetCacheability(HttpCacheability.NoCache); Response.Cache.SetExpires(DateTime.Today.AddYears(-2)); return PartialView("Index", 数据源);} 阅读全文
posted @ 2013-01-15 14:32 yanggm 阅读(1448) 评论(1) 推荐(0) 编辑