Hi,
Can someone help me with this issue??
I am trying to get html element from a stream
this is the stream:
Dim request As WebRequest = HttpWebRequest.Create("http://www.mysite.com/")
Dim response As WebResponse = request.GetResponse()
Dim stream As Stream = response.GetResponseStream()
How can I get the html elements from it?
(I DO NOT WANT TO USE WEBBROWSER CONTROL)
Then I will do something like...
For Each element As HtmlElement In XXXXXXXX
ListBox1.Items.Add(element.GetAttribute("href"))
Next
PLS HELP ME!
THANKS!!!! &)