2

我有一个经典的 ASP 页面,它使用服务器端包含调用其他一些 ASP 文件。

我不希望任何浏览器缓存主文件和包含的文件。

目前我的主要看起来像这样:

<%@ Language="VBSCRIPT" %><% Option Explicit %>
<%
Response.CacheControl = "no-cache"
Response.AddHeader "Pragma", "no-cache"
Response.Expires=-1
%> 
<!--#include file="scripts1.asp"-->
<!--#include file="scripts2.asp"-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>myTitle</title>
<!--#include file="head.asp"-->
</head>
<body>
<!--#include file="body.asp"-->
</body>
</html>

我只将 Response.CacheControl、Response.AddHeader、Response.Expires 代码放在主页上,而不是放在包含的文件上。

我的问题是:

  1. 所有服务器端包含的 ASP 页面都需要我使用过的Response.CacheControl, Response.AddHeader和代码,还是只需要主文件?Response.Expires

  2. 我使用的代码是否足以防止在所有浏览器上进行缓存?

4

1 回答 1

4

如您所示,只有“主”输出页面需要标题。服务器端包含发生在服务器内部,因此浏览器永远不会看到它。

你做对了。

于 2012-02-22T15:23:08.327 回答