I want to extract the release date of the film from this link.
The problem is that it is given directly in a <td>
tag, which has no class or id. The only possible solution that I can think of is using the style tag to extract data but I have no idea on how to do it.
Here's my code
url = "https://en.wikipedia.org/wiki/" + textBox1.Text.Replace(" ", "_");
try
{
foreach (HtmlNode node in doc.DocumentNode.SelectNodes(/*?*/))
{
label1.Text+=node.InnerText;
}
}
catch (Exception ex3) { }
Please help!