I'm trying to parse this field, but can't get it to work. Current attempt:
HTML:
<div class="movie_data">
<dl>
<dt><a href="http://www.imdb.com/title/tt1302011/">IMDB</a>:</dt>
<dd>8.0 / 10</dd>
<dt>Zvrst:</dt>
<dd><a href="/sl/kino?t=&g=1&actual=1">komedija</a>, <a href="/sl/kino?t=&g=14&actual=1">animirani</a>, <a href="/sl/kino?t=&g=21&actual=1">družinski</a></dd>
<dt>Trajanje:</dt>
<dd>90 min</dd>
</dl>
</div>
My code:
HtmlAgilityPack.HtmlWeb web = new HtmlAgilityPack.HtmlWeb();
HtmlAgilityPack.HtmlDocument htmlDocTusCelje = web.Load(my_link_to);
HtmlAgilityPack.HtmlNode nodeOcena = htmlDocTusCelje.DocumentNode.SelectSingleNode("//div[@class='movie_data']/dt/dd[0]");
labelOcena.Text = nodeOcena.InnerText;
I need to parse only the inner text from the <dd> tag, but I get an exception: NullReferenceException, Object reference not set to an instance of an object.
I tried with SelectNodes and a foreach loop - same story. Please help me out of this error.