如何终止浏览器的Cahce页面?
时间:2021-02-12 08:52:11|栏目:|点击: 次
如何终止浏览器的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
上一篇:AS3中的反射(速记) 分析
栏 目:
下一篇:Powershell小技巧之通过EventLog查看近期电脑开机和关机时间
本文标题:如何终止浏览器的Cahce页面?
本文地址:http://www.codeinn.net/misctech/61872.html






