robots for fetche all link site
ASP.NET
3
Posts
3
Posters
0
Views
1
Watching
-
hi guys please help me i want to fetch all link in the site do you have component for robots web ?
-
hi guys please help me i want to fetch all link in the site do you have component for robots web ?
-
hi guys please help me i want to fetch all link in the site do you have component for robots web ?
Use http://htmlagilitypack.codeplex.com/[^] eg :-
HtmlWeb hw = new HtmlWeb();
HtmlDocument doc = hw.Load(/* url */);
foreach(HtmlNode link in doc.DocumentElement.SelectNodes("//a[@href]"))
{}
Please up vote if it helped you :) Thanks And Regards Sibeesh