System.Net.WebException: The underlying connection was closed:

liunx

Guest
I just want to consume RSS xml in to asp.net page.

this is the code..
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
Dim ds As DataSet
ds = New DataSet
ds.ReadXml("http://rss.intel.com/rss/intel-pressroom.xml", XmlReadMode.Auto)

rssfeed.DataSource = ds.Tables(2)
rssfeed.DataBind()
End Sub

this is the errer i get...

Exception Details: System.Net.WebException: The underlying connection was closed: The remote name could not be resolved.

any help...? :(
 
Back
Top