Hi,
Also you can use XmlTextReader which might be a bit simple:
// Create the XmlReader object. XmlTextReader reader = new XmlTextReader("http://msdn.microsoft.com/rss.xml"); XmlDocument doc = new XmlDocument(); doc.Load(reader); reader.Close(); XmlNodeList nodes = doc.DocumentElement.SelectNodes("/rss/channel/item/title"); for (int i = 0; i < nodes.Count; i++) { Response.Write(nodes[i].Name + " value="); Response.Write(nodes[i].FirstChild.Value); Response.Write(("You can add minor changes to above code to create dataset.
")); }