让IE后退时不取出Cache里的内容
有朋友问我如何在ASP中实现让IE后退时不取出Cache里的内容,现在我告诉大家只要把下面的语句Copy到ASP的<head>...</head>就可以了:
<%
Response.Buffer=true
Response.Expires=0
Response.CacheControl="no-cache"
%>
有朋友问我如何在ASP中实现让IE后退时不取出Cache里的内容,现在我告诉大家只要把下面的语句Copy到ASP的<head>...</head>就可以了:
<%
Response.Buffer=true
Response.Expires=0
Response.CacheControl="no-cache"
%>