I have been having trouble doing something I always thought would be simple until I actually have to do it. I am basically wanting to read an RSS feed and display it locally so that flash can read it without having to cross domains. So I created an asp.net page and did the following in the page load:
XmlTextReader myX = new XmlTextReader("myX.Read();
string info = myX.ReadOuterXml();
Response.Write(info);
When I debug this, I notice that info had everything in it properly but I get this page is not available error in internet explorer when I try to browse this page. It just isnt working. Does anyone have a script that basically proxy's an RSS feed?
XmlTextReader myX = new XmlTextReader("myX.Read();
string info = myX.ReadOuterXml();
Response.Write(info);
When I debug this, I notice that info had everything in it properly but I get this page is not available error in internet explorer when I try to browse this page. It just isnt working. Does anyone have a script that basically proxy's an RSS feed?