Limpiar la memoria cache del navegador en ASP clasico

Iniciado por Black.scorpion.x, 19 Abril 2017, 21:54 PM

0 Miembros y 1 Visitante están viendo este tema.

Black.scorpion.x

Estimados

Me encuentro haciendo una mantención a unos sistemas en ASP clásico. Y necesito limpiar la cache del navegador. Me podrían ayudar. Ya que coloque el siguiente código en al inicio del archivo .asp

Código (asp) [Seleccionar]
Response.Expires         = -1
Response.ExpiresAbsolute = Now() - 1
Response.CacheControl    = "no-cache; private; no-store; must-revalidate; max-stale=0; post-check=0; pre-check=0; max-age=0"
Response.AddHeader         "Cache-Control", "no-cache; private; no-store; must-revalidate; max-stale=0; post-check=0; pre-check=0; max-age=0"  ' Same as previous line, I know, just in case.
Response.AddHeader         "Pragma", "no-cache"
Response.AddHeader         "Expires", "-1"


Como también coloque el siguiente código en el HTML del formulario para limpiar la memoria chache del navegador y así me mostraran los cambios hechos en el formulario.

Código (html4strict) [Seleccionar]
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="-1">