Dim request As System.Net.HttpWebRequest = System.Net.HttpWebRequest.Create(i) Dim response As System.Net.HttpWebResponse = request.GetResponse Dim sr As System.IO.StreamReader = New System.IO.StreamReader(response.GetResponseStream()) Dim source As String = sr.ReadToEnd TextBox1.Text = source
this is the code m using it works well for one url but when i use for each loop the project get struck
so how to get tht working smoothly?


Sign In
Create Account


Back to top









