我试图从另一个 url 获取数据并将其发布到我页面中的 div 中。但我遇到了意外的运行时错误。
在 getSource 方法中,当我将 localhost 页面写为 url 时,出现错误。网址写错了吗?
Protected Sub populate()
litComment.Text = getSource("http://localhost:3395/CGH%20Proj/AntibioticRecordManagement.aspx") 'http://localhost:3395/CGH%20Proj/Comments.aspx")
End Sub
Protected Function getSource(ByVal url As String) As String
Dim r As String = ""
Using wc As WebClient = New WebClient()
r = wc.DownloadString(url)
Return r
End Using
End Function