I was asking myself this same question and after struggling to follow advice here and elsewhere to get IronPython and BeautifulSoup to play nicely with my existing code I decided to go looking for an alternative native .NET solution.  BeautifulSoup is a wonderful bit of code and at first it didn't look like there was anything comparable available for .NET, but then I found the [HTML Agility Pack][1] and if anything I think I've actually gained some maintainability over BeautifulSoup.  It takes clean or crufty HTML and produces a elegant XML DOM from it that can be queried via XPath.  With a couple lines of code you can even get back a raw XDocument and then [craft your queries in LINQ to XML][2].  Honestly, if web scraping is your goal, this is about the cleanest solution you are likely to find.


  [1]: http://www.codeplex.com/htmlagilitypack
  [2]: http://vijay.screamingpens.com/archive/2008/05/26/linq-amp-lambda-part-3-html-agility-pack-to-linq.aspx