I've added the following lines of code to the web.config to disable caching on all pages.
<httpProtocol>
<customHeaders>
<add name="X-Frame-Options" value="SAMEORIGIN" />
<add name="Cache-Control" value="no-store,no-cache"/>
</cust ...
Go to the complete details ...