hi guys
few days ago i was trying to find some thing to learn and i found a code
it leech proxies from web but method used is post method/ http webrequst ....
problem is here want to do same thing with web browser
here r the codes
Dim request2 As System.Net.HttpWebRequest = System.Net.HttpWebRequest.Create("http://freeforums.org/d-t5.html")
Dim response2 As System.Net.HttpWebResponse = request2.GetResponse
Dim sr2 As System.IO.StreamReader = New System.IO.StreamReader(response2.GetResponseStream())
Dim rssourcecode2 As String = sr2.ReadToEnd
Dim r2 As New System.Text.RegularExpressions.Regex("[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}:[0-9]{1,4}")
Dim matches2 As MatchCollection = r2.Matches(rssourcecode2)
For Each itemcode As Match In matches2
ListBox1.Items.Add(itemcode)
Next
ListBox1.Items.Remove("")
Me.Text = "PROXIES - " + ListBox1.Items.Count.ToString
if some 1 can help it would be nice of him