让我们假设以下代码:
[OutputCache(Duration=60,VaryByCustom="Browser")]
public ActionResult CachableAction(string SomeParameter)
{
return View();
}
我知道Output caching lets you store the output of an action method in memory on the Web server. For example, if the action method renders a view, the view page will be cached.
我不想在调试配置中缓存我的页面。
Release
仅在配置中 应用缓存需要哪些设置Debug
?
我正在使用VS2010。