Como aplicar a correção de documentos do IE SSL MS Office para todo o servidor web?

1

Tenho várias áreas em meu aplicativo da web em que o usuário pode fazer o download de documentos do Microsoft Office. Preciso aplicar a correção listada aqui

Web sites that want to allow this type of operation should remove the no-cache header or headers.

Como fazer isso?

    
por O.O 10.01.2012 / 19:05

1 resposta

2

Definir o parâmetro CacheControlMode conforme descrito na documentação do IIS7 deve ser feito o que você quer:

To set the expires response header to expire content periodically and to set the number of seconds, minutes, hours, or days at which to expire the content, use the following syntax:

appcmd set config /section:staticContent /clientCache.cacheControlMode:UseMaxAge /clientCache.cacheControlMaxAge: timeSpan 

The variable timeSpan is the time at which to expire the content. The format for timeSpan is d.hh:mm:ss, where d is the optional number of days, hh is the number of hours, mm is the number of minutes, and ss is the number of seconds at which to expire the content. For example, to set the cache to expire every two days, type the following and then press ENTER:

appcmd set config /section:staticContent /clientCache.cacheControlMode:UseMaxAge /clientCache.cacheControlMaxAge:2.00:00:00
    
por 11.01.2012 / 01:49