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
-
▼
2008
(20)
-
►
December
(14)
- Building Custom Control : Tell A Friend Custom Con...
- Watermark on image : Draw string on the image
- Remember me on this computer - Store username and ...
- Building URL with www.
- HIGHLIGHT STRING IN IMAGE [ DRAW STRING WITH HIGHL...
- LOOPING IN STORED PROCEDURE [CURSOR IN SQL SERVER]...
- CHANGE IMAGE COLOR USING C# ( GRAPHICS GDI+ )
- DRAW STRING WITH MULTI LINES IN FIX RECTANGLE
- DRAW STRING WITH TWO LINES IN FIX RECTANGLE
- DRAW STRING IN FIX RECTANGLE WITH BACKGROUNG COLOR...
- DRAW STRING IN FIX RECTANGLE WITH BACKGROUNG COLOR...
- DRAW STRING IN FIX RECTANGLE WITH BACKGROUNG COLOR...
- DRAW STRING IN FIX RECTANGLE WITH BACKGROUNG COLOR...
- DRAW STRING IN FIX RECTANGLE
-
►
December
(14)
Categories
- Custom Control (1)
- Data Control (1)
- Graphics GDI+ (11)
- Other (6)
- SQL SERVER (1)
0 comments:
Post a Comment