string xmlUrl = http://www.rss.net/HOROSCOPE_FEED.asp;
string xmlResult,xmlDate;
XmlDataSource xmlDS = new XmlDataSource();
xmlDS.EnableCaching = false; // to avoid caching
xmlDS.DataFile = xmlUrl;
XmlDocument xmlDoc = xmlDS.GetXmlDocument();
xmlDate = xmlDoc.SelectSingleNode("//scopetitle").InnerText;