我正在尝试在 mvc3 中实现文件依赖缓存。由于我是 MVC 新手,所以我浏览了搜索过的 google,但没有得到任何帮助。
我们的任何人都可以帮助我吗?或者解决这个问题的方法是什么?
我尝试与我们在 asp.net 中所做的相同,但出现错误。
我试过的代码:
public ActionResult About()
{
Cache.Insert("DropDownData", "", new System.Web.Caching.CacheDependency(Server.MapPath("~/testxml.xml")));
return View();
}
我得到的错误:
An object reference is required for the non-static field, method, or property 'System.Web.Caching.Cache.Insert(string, object, System.Web.Caching.CacheDependency)