This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How to set headers in HTTP Response while using Keil library?

We are having issues with browser caching. Browser is not fetching the latest index.htm. All the meta tags related to cache disabling are included in index.htm, still browser doesn't request for latest index.htm. We are using Chrome latest version.

Heard about setting the Cache Control to No-Cache in http response header, in one of the online forum.

How do we set the http response headers while using keil library (TCP_ARM_L.lib)?

Parents
  • You can not.

    index.htm is a static resource, normally cached in the browser. During development clear the cache in the browser from time to time to fetch the updated content of index.htm.

    If you want a dynamic default page, then use a script index.cgi The output from scripts is never cached in the browser.

Reply
  • You can not.

    index.htm is a static resource, normally cached in the browser. During development clear the cache in the browser from time to time to fetch the updated content of index.htm.

    If you want a dynamic default page, then use a script index.cgi The output from scripts is never cached in the browser.

Children