习惯了用newzcrawler进行RSS订阅,可以浏览新闻和相关信息
现在许多网站都推出了自己的RSS订阅,如CSDN和微软MSDN等
其实做这样的工具很简单
有时间,可以自己做一个小工具来进行RSS订阅,如订阅MSDN的netframework
private void Page_Load(object sender, System.EventArgs e)
{
DataSet ds = new DataSet();
ds.ReadXml("http://msdn.microsoft.com/netframework/rss.xml",XmlReadMode.Auto );
DataGrid1.DataSource = ds.Tables[2];
DataGrid1.DataBind();
}
其它的RSS订阅:
MSDN RSS Feeds
Get the Feeds: