我有两台运行Windows 7的台式计算机
我尝试了相同的程序,它将在一台计算机上运行,但另一台计算机会抛出异常:&#34; 请求已中止:连接意外关闭&#34; < / p>
Public Class Form1
Private Sub Form1_Shown(sender As Object, e As EventArgs) Handles Me.Shown
Try
MsgBox(New System.Net.WebClient().DownloadString("http://www.wunderground.com/cgi-bin/findweather/getForecast?query=12345"))
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
End Class
问题似乎只出现在 wunderground.com 。
是什么给出了?
BTW,使用WebRequest
获取网页会产生相同的结果。