页面没有刷新是怎么回事呀?

在本地运行是没有问题的,但上传到我的服务器之后出现超级链接页面不能自动刷新了,就是点超级链接页面无法更新,只有再点IE上的刷新才能更新页面,这样就让我十分难做,只在我只有在每个超级链接的后面都加上"?temp=``` now()

 1\---------------------------------------------------------------   
 2  
 3把这个放在开头!   
 4response.expires = 0   
 5\---------------------------------------------------------------   
 6  
 7清除网页的缓存功能:   
 8  
 9禁用客户端缓存   
10HTM网页
``` `````` `````` ASP网页 ```

Response.Expires = -1
Response.ExpiresAbsolute = Now() - 1
Response.cachecontrol = "no-cache"

Published At
Categories with Web编程
Tagged with
comments powered by Disqus