if i can make WebRequest
for one link like this :
Dim rt As String = "http://www.somelink.com"
Dim wRequest As WebRequest
Dim WResponse As WebResponse
Dim SR As StreamReader
wRequest = FtpWebRequest.Create(rt)
WResponse = wRequest.GetResponse
SR = New StreamReader(WResponse.GetResponseStream)
rt = SR.ReadToEnd
how can i make a loop or function of WebRequest
for an array of links or array of string
and return for me WebResponse
for each link in one string or array of string