我是MVC的初学者,我有一个项目,从MVC2转换到最新版本的MVC.
我读了一些关于MVC 4的书,所以我开始理解主要的机制.
我读了一些关于MVC 4的书,所以我开始理解主要的机制.
但是,在转换我的MVC 2解决方案时,我遇到了一个属性问题:OutputCache.
通过例如.我有多个这样的动作(属性可能会有所不同):
[OutputCache(CacheProfile = "ProductImage")] public ActionResult GetImage(Guid elementId,int imgtype)
在Web.Config我有“缓存> outputCacheSettings> outputCacheProfiles>”:
<add name="ProductImage" duration="5" varyByParam="elementId,imgtype" />
OutputCacheAttribute for child actions only supports Duration,
VaryByCustom,and VaryByParam values. Please do not set CacheProfile,
Location,NoStore,sqlDependency,VaryByContentEncoding,or
VaryByHeader values for child actions.
据我所知,问题只出现在儿童行动中.