別の URL からデータを取得して、ページの div に投稿しようとしています。しかし、予期しないランタイム エラーが発生します。
getSource メソッドで、localhost ページを URL として記述すると、エラーが発生します。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