I was asked how to GET rss feed from a web site. During research, I found couple of ways to do it in .NET. Below is the simplest way as I can get. ///Sample using System.Net WebRequest wr = HttpWebRequest.Create(@"http://msdn.microsoft.com/globalrss/en-us/global-msdn-en-us.xml"); Read More