how to read the txt url in WebBrowser1?
Dim i As Long = 0
Dim qz() As String
Dim objReader As New System.IO.StreamReader("C:\1.txt")
Do Until qz Is Nothing
qz(0) = objReader.ReadLine()
i += 1
Loop
TextBox4.Text = "c:\1.txt"
WebBrowser1.Navigate(New System.Uri("textbox4.text"))
in the red color , this can't to open in WebBrowser1..
how to do?