hi Everyone,

i have working now with Visual Studio .NET 2003.

Namespaces used
using System;
using System.Net;
using System.xml;

Code Lines in Page_Load Event For a Web Page


WebRequest myRequest = WebRequest.Create
("http://radio.weblogs.com/0126361/rss.xml") ;
myRequest.Timeout = 100000;
>> WebResponse myResponse = myRequest.GetResponse();

XmlTextReader myReader = new XmlTextReader
(myResponse.GetResponseStream());
XmlDocument doc = new XmlDocument
();
doc.Load(myReader);


Error Occured while Browsing the Page

The underlying connection was closed: Unable to connect
to the remote server

but the same content of Code Lines is working in First
Release of Visual studio .NET

Its not working in Visual Studio .NET 2003

Do anyone have solution for this ??