Desativar cache globalmente .NET
Existe uma maneira de desativar o cache do servidor globalmente no ASP.NET? Por exemplo, adicionando algum tipo de configuração ao arquivo web.config?
Até agora eu tentei adicionar esses e não fez a diferença ...
<caching>
<sqlCacheDependency enabled="false"></sqlCacheDependency>
<outputCache enableOutputCache="false"
enableFragmentCache="false"
sendCacheControlHeader="false"
omitVaryStar="false" />
</caching>