just open the file in web browser and click File > Save As in the IE or whatever browser you use...
Main Topics
Browse All TopicsI have a url of an RSS Feed and would like to get it on my computer in the format of an XML file. How do you go about doing this?
Thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Private Sub GetWNBC_SportsData(ByVal stateInfo As Object)
'Variables for working with exisitng RSS feed's XML data
Dim xmldoc As New Xml.XmlDocument
Dim xmlnlist As Xml.XmlNodeList
Dim xmln As Xml.XmlNode
Dim config As System.Configuration.Confi
'-------------------------
'The following variables are used for creating the new xml file
Dim xmlRevDoc As New Xml.XmlDocument
' Create the root element
Dim rootNode As XmlElement = xmlRevDoc.CreateElement("W
xmlRevDoc.AppendChild(root
'-------------------------
Try
xmldoc.Load(config.AppSett
xmlnlist = xmldoc.SelectNodes("//item
Dim category As String = "WNBC_Sports"
For Each xmln In xmlnlist
'Get node information used for new xml file
Dim description As String = xmln.InnerText
' Create the required nodes
Dim mainNode As XmlElement = xmlRevDoc.CreateElement("D
'retrieve the text
Dim txtDescription As XmlText = xmlRevDoc.CreateTextNode(d
'append the nodes to the parent node without the value
rootNode.AppendChild(mainN
' save the value of the field into the node
mainNode.AppendChild(txtDe
Next
WriteXML(category, xmlRevDoc.OuterXml.ToStrin
'xmlRevDoc.Save("WNBC_Spor
Catch ex As Exception
cErr.ReportError(ex)
End Try
End Sub
Business Accounts
Answer for Membership
by: jkmyoungPosted on 2007-09-28 at 11:11:42ID: 19980586
Just do a simple HTTPRequest on the site using the URL provided: b.aspx
eg, see here for a short code sample and explanation.
http://www.dart.com/ctl_we