Adding the normal response.expires and other meta tags seems to work for FF and IE but Safari and Chrome seem to ignore these. Any ideas on how to make my asp pages expire in all browsers? Part of my code is below.
Thanks.
Swi
Thanks.
Code:
<%@ Language=VBScript %>
<% Option Explicit %>
<% Response.Buffer = true %>
<% Response.Expires = -1 %>
<% Response.ExpiresAbsolute = Now() - 2 %>
<% Server.ScriptTimeout = 200 %>
<% Session.Timeout = 20 %>
<% Response.AddHeader "pragma","no-cache" %>
<% Response.AddHeader "cache-control","private" %>
<% Response.CacheControl = "private" %>
<!--#include virtual="include/ForceSSL.inc"-->
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="-1">
<meta http-equiv="CACHE-CONTROL" content="NO-CACHE">
Swi