Environment: IIS 7, .Net 4.0

In web.config of our application, it has this section:

<system.webServer>
  <httpProtocol>
   <customHeaders>
     <add name="cache-control" value="no-cache" />
   </customHeaders>
  </httpProtocol>
</system.webServer>

Most of our application requires no-cache, but there is only one page that requires cache-control to be Private. Is a way to do it?

Appreciated for any input

link|improve this question

38% accept rate
feedback

1 Answer

You cannot apply or override settings from web.config to a particular page, however you can do this for all pages inside a folder, by following settings.

<system.webServer>
  <httpProtocol>
   <customHeaders>
     <remove name="cacne-cotrol" />
     <add name="cache-control" value="no-cache" />
   </customHeaders>
  </httpProtocol>
</system.webServer>

However, you can override the cache-control settings in Page_Load event of a particular page.

Response.CacheControl = "Private";
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.