<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.1.16">
</HEAD>
<BODY>
Dear OpenCMS team,<BR>
I've recently read here on the mailing list the suggestion that the browser's settings should be changed so that there would be no problems with pages not refreshing properly. I believe this is not the correct way to solve the issue.<BR>
The real fix is to use the cache headers by adding to the <B>pageHtmlStyle(in,String,String)</B> method of <B>org.opencms.workplace.CmsWorkplace</B> the following code, just before the stylesheet is addded:            <BR>
<BR>
result.append("<meta Http-Equiv=\"Cache-Control\" Content=\"no-cache\">");<BR>
result.append("<meta Http-Equiv=\"Pragma\" Content=\"no-cache\">");<BR>
result.append("<meta Http-Equiv=\"Expires\" Content=\"0\">");<BR>
<BR>
Tell me what you think<BR>
<BR>
Tristan
</BODY>
</HTML>