What I would like to do is access the yahoo weather xml from the rss, and get the data specifically from the yweather:condition tag. I tried with
xdoc.Load("http://xml.weather.yahoo.com/forecastrss?p=MKXX0001&u=c");
XmlNode xNode = xdoc.DocumentElement.SelectSingleNode("yweather:condition");
But with no success. How can I access the xml from yahoo weather and get all the attributes there? Also, how can I save all the attributes to my local xml file?