I wanted to disable Application level cache for my ASP.NET application.So I have added following Custom header in web.config \[code\]<httpProtocol> <customHeaders> <add name="Cache-Control" value="http://stackoverflow.com/questions/15586889/no-cache" /> <add name="Pragma" value="http://stackoverflow.com/questions/15586889/no-cache" /> <add name="Expires" value="http://stackoverflow.com/questions/15586889/-1" /> </customHeaders>\[/code\]However when I see Reponses header in Developer tool in IE9 I could see
- Cache Control : private, no-cache
- Pragma : no-cache
- Exprires : -1
- Cache Control : no-cache
- Pragma : no-cache
- Exprires : -1