The following configuration sample adds an HTTP "Cache-Control: no-cache" header to the response, thereby disabling caching of requests in the browser.
<configuration><system.webServer>
<staticContent>
<clientCachecacheControlMode="DisableCache"/>
</staticContent>
</system.webServer>
</configuration>