mabuhay, im trying to convert the XML from a sample stock news page, http://finance.yahoo.com/rss/headline?s=ROC, and convert it into a dataset so i can populate a gridview. i have this so far...
Dim myRequest As WebRequest = WebRequest.Create("http://finance.yahoo.com/rss/headline?s=ROC")
Dim myResponse As WebResponse = myRequest.GetResponse()
Dim rssStream As Stream = myResponse.GetResponseStream()
Dim rssDoc As New XmlDocument()
rssDoc.Load(rssStream).........
can someone tell me if im goin down the right path or am i doing something totally irrelivant. salamatz.