我使用以下代码从列出的网站复制某一行文字。
'Track A
Dim TrackA As System.Net.HttpWebRequest = System.Net.HttpWebRequest.Create("https://pilotweb.nas.faa.gov/common/nat.html")
Dim GaA As System.Net.HttpWebResponse = TrackA.GetResponse
Dim WrA As System.IO.StreamReader = New System.IO.StreamReader(GaA.GetResponseStream)
Dim ContentStrA As String = WrA.ReadToEnd
Dim StartIndexA As Integer = ContentStrA.IndexOf(vbLf & "A ") + 1
Dim StrLengthA As Integer = ContentStrA.IndexOf(vbLf, StartIndexA) - StartIndexA
但是,当我在VB的一个标签页中打开链接时,它会显示几天前的网站版本,如何防止这种情况发生,因为我需要网站的当前版本?
答案 0 :(得分:2)
更改System.Net.HttpWebRequest
对象的Cache Policy,以便您不会获得缓存结果。
或者,您可以clear the cache for your URL。