当前位置: 移动技术网 > IT编程>开发语言>其他编程 > 如何终止浏览器的Cahce页面?

如何终止浏览器的Cahce页面?

2017年12月08日  | 移动技术网IT编程  | 我要评论

如何终止浏览器的cahce页面?

 

function redirect( newurl )

if not isempty( newurl & "" ) then

dim questionmark

questionmark = instr( newurl, "?" )

if questionmark = 0 then

response.redirect newurl & "?" & nocacheurl()

response.end

else

response.redirect newurl & "&" & nocacheurl()

response.end

end if

end if

 

function nocacheurl()

on error resume next

randomize

nocacheurl = "nocache=" & server.urlencode(rnd)

 

end function

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网