我在ASP.net MVC应用程序中使用OutputCache。由于使用活动的OutputCache进行开发不是一件令人愉快的事情,因此我想在开发系统(本地计算机和开发服务器)上禁用OutputCache。
做这个的最好方式是什么?
最佳答案
这是一个古老的但...
在system.web下的web.config中进行设置
<caching>
<outputCache enableOutputCache="false" />
</caching>
关于asp.net - 在开发系统上禁用OutputCache,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2788376/