前端之家收集整理的这篇文章主要介绍了
asp.net – 在开发系统上禁用OutputCache,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在ASP.net MVC应用程序中使用OutputCache.由于使用活动的OutputCache开发不是很愉快,因此我想要禁用开发系统(本地机器和开发服务器)上的OutputCache.
这样做最好的方法是什么?
这是一个老的,但…
将其设置在system.web下的web.config中
<caching>
<outputCache enableOutputCache="false" />
</caching>
原文链接:https://www.f2er.com/aspnet/249735.html