using System.XML;
Gets the xml from the Url using XmlTextReader
XmlTextReader reader = new XmlTextReader("http://msdn.microsoft.com/rss.xml");
creates a new instance of DataSet
DataSet ds = new DataSet();
Reads the xml into the dataset
ds.ReadXml(reader);
Assigns the data table to the datagrid
grid.DataSource = ds.Tables[0];
myDataGrid.DataBind();
Thursday, September 25, 2008
Using RSS feeds in asp .net and C#
at
4:39 AM
·
Category: Other
Subscribe to:
Post Comments (Atom)
Archivo
Categories
- Custom Control (1)
- Data Control (1)
- Graphics GDI+ (11)
- Other (6)
- SQL SERVER (1)
0 comments:
Post a Comment