What is the best way to read RSS feeds?
I am using XmlTextReader
to achieve this. Is there any other best way to do it?
XmlTextReader reader = new XmlTextReader(strURL);
DataSet ds = new DataSet();
ds.ReadXml(reader);
After reading the RSS feed using XmlTextReader
, is there any way I can populate data to ListItem
instead of DataSet
?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…