I want to make sure that every time a page is opened it gets a fresh copy from the server and not the one stored in the user's cache. I'm using the meta tags below, but I'm not getting the desired effects:
Well... it works sometimes, but usually on the second try, which defeats my purpose. Since this is a web application, it has to always pull the data from the database to build the screen everytime the page is opened.
Any suggestions?
Code:
<HEAD>
<title>costsavings_summary</title>
<meta content="Microsoft Visual Studio.NET 7.0" name="GENERATOR">
<meta content="Visual Basic 7.0" name="CODE_LANGUAGE">
<meta content="VBScript" name="vs_defaultClientScript">
<meta content="[URL unfurl="true"]http://schemas.microsoft.com/intellisense/ie5"[/URL] name="vs_targetSchema">
<LINK href="styles.css" type="text/css" rel="stylesheet">
<META http-EQUIV="Pragma" CONTENT="no-cache">
<meta HTTP-EQUIV="Expires" CONTENT="0">
</HEAD>
Well... it works sometimes, but usually on the second try, which defeats my purpose. Since this is a web application, it has to always pull the data from the database to build the screen everytime the page is opened.
Any suggestions?