I am making program which will show the text from the table.The structure is like that.
there are two tables but I want to get text from the 2nd table.

my table data looks like below:

I want to show the first 3 columns of each row of the 2nd table. For this I tried like this.
HtmlWeb web = new HtmlWeb();
HtmlAgilityPack.HtmlDocument doc = web.Load("http://www.banglaeye.com/baby-names/index.php");
HtmlNodeCollection nodes = doc.DocumentNode.SelectNodes("//div[@class='col_box']/table[2]/tr/td");
try
{
foreach (HtmlNode n in nodes)
{
if (k != 0)
{
link = n.InnerHtml;
my_link.Add(link);
MessageBox.Show(link);
}
k++;
}
}
catch (NullReferenceException)
{
MessageBox.Show("No link found");
}
I have found that this URL does a http post method. But Html Agility pack doesn't provide any Http post method. so how can achieve my goal??