Sometimes, a set of WebHelp pages needs to be updated often in order to deliver the latest version of the documentation to your users. In such cases, a WebHelp page should always be requested from the server upon re-loading it in a Web browser on the client side, rather than re-using an outdated cached version in the browser.
<meta http-equiv="Pragma" content="no-cache" /> <meta http-equiv="Expires" content="-1" />
<html>
<head>
<xsl:if test="$withFrames">
<base target="contentwin"/>
</xsl:if>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<!-- Disable caching of WebHelp pages in web browser. -->
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />
....