Hi friends,
So I was trying to connect through a couple private proxies that I've ordered using the Webclient class.
Here's the code that I have thus far, but I don't know the exact lines of code for connecting through using credentials:
Would appreciate the help connecting through my private proxies with the credential settings. Thanks again.
So I was trying to connect through a couple private proxies that I've ordered using the Webclient class.
Here's the code that I have thus far, but I don't know the exact lines of code for connecting through using credentials:
VB.NET:
Try
Dim client As New System.Net.WebClient()
Dim wp As New System.Net.WebProxy(TextBox1.Text)
client.Proxy = wp
Dim str As String = client.DownloadString("https://www.MyLovelySite.com")
TextBox2.Text = str
Catch ex As Exception
MsgBox(ex.Message)
End Try