If i want to access a web url through a .NET Application, how can i do that? Answer is WebRequest class. Say for example the url http://abibaby.blogspot.com or http://abibaby.blogspot.com/atom.xml
WebRequest request = WebRequest.Create(“http://abibaby.blogspot.com/atom.xml”);
WebResponse response = request.GetResponse();
StreamReader reader = new StreamReader(response.GetResponseStream());
string str = reader.ReadLine();
while(str != null)
{
Console.WriteLine(str);
str = reader.ReadLine();
}
Filed under: General | Leave a Comment »