I know this question has been asked many times and I've implemented what I've found online, but it doesn't seem to work.
The background: I'm generating html pages from Python (not using any libraries to help me, just writing raw html out to a text file) to present a processing status report and we keep on getting bit by not remembering to refresh the page. The "last updated" date is displayed prominently at the top but we still forget to refresh.
So is there some way to force the browser to automatically refresh the page each time we look at it without the users having to manually click on "refresh"? We use a variety of browsers on both Macs and Windows so a multi-platform solution would be ideal.
Thank you for any tips,
Catherine
A sample web page looks like the following:
<!--Label: OCO2_B11Forward3-->
<!--Completion status: Partial-->
<!--Has duplicates: False-->
<!--Has gaps: False-->
<!--L0Env_EPS: Percent complete 100-->
<!--L0Env_TPS: Percent complete 100-->
<!--Attde: Percent complete 100-->
<!--Ephem: Percent complete 100-->
<!--L1aEn: Percent complete 100-->
<!--L1aIn: Percent complete 100-->
<!--L1aSt: Percent complete 99-->
<!--GeoCl: Percent complete 100-->
<!--GeoSc: Percent complete 97-->
<!--L1bCl: Percent complete 97-->
<!--L1bSc: Percent complete 97-->
<!--L1bSt: Percent complete 97-->
<!--L2Met: Percent complete 97-->
<!--L2CPr: Percent complete 97-->
<!--L2ABP: Percent complete 97-->
<!--L2IDP: Percent complete 97-->
<!--L2Sel: Percent complete 97-->
<!--L2Lst: Percent complete 97-->
<!--L2Dia: Percent complete 97-->
<!--L2Std: Percent complete 97-->
<meta http-equiv="refresh" content="60"><meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<!DOCTYPE html>
<style>
th, td {
}
.column {
float: left;
width: 33.33%;
}