I\'m revisiting som old code of mine and have stumbled upon a method for getting the title of a website based on its url. It\'s not really what you would call a stable metho
A simpler way to get the content:
WebClient x = new WebClient(); string source = x.DownloadString("http://www.singingeels.com/");
A simpler, more reliable way to get the title:
string title = Regex.Match(source, @"\]*\>\s*(?[\s\S]*?)\", RegexOptions.IgnoreCase).Groups["Title"].Value;