hi
Iam developing a application in which i have used a . net browser to display a web page of feed . from that web page Iam storing the latest pub date but after 2 min its giving 503 exception . my code is as follow . how can i get rid of this exception
var URL = "http://feeds2.feedburner.com/plasticsnews/plasticsinformation/plastopedia";
System.Xml.Linq.XDocument feeddata = System.Xml.Linq.XDocument.Load(URL);
var maxPubDates = (from item in feeddata.Descendants("item") select item);