I need to screen scrap a website with the given urls. When I try to load the content of the page http://cks.nice.org.uk/?char=B , I get all the content (in doc object below) except links (anchor elements) inside div with class="list-wrapper"
Any ideas? thanks
using System;
using HtmlAgilityPack;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
HtmlWeb web = new HtmlWeb();
HtmlDocument doc = null;
doc = web.Load("http://cks.nice.org.uk/?char=B");
}
}