Since the CACHE parameter set by IIS for dynamic pages such as ASP is private by default, the CACHE software will not cache the ASP output page. The ASP output page only calls out the content in the database to display to the user without using dynamic attributes such as SESSION. It can be cached. , to speed up access, the specific operation methods are as follows:
Add: at the top of the asp program page:
<% @Language=VBScript %>
<% Response.CacheControl = max-age=300 %>
illustrate:
max-age CACHE time parameter
300 cache for 300 seconds