Click here to Skip to main content
15,867,568 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
How to implement Generic Crawler, for eg. i have 1000 website URLs
and and i want's get their website contactus page data i.e only contact information like Name address city phone etc .
so how do i implement this type of crawler in .net.
Posted

1 solution

Hire a developer. Or do you seriously expect to get a complete source code?

Solution outline:
Open each URL.
Get contents.
Apply some sort of search function on the returned content, possibly using regular expressions.
Store result.
Done.

However, most web sites circumvent this by having contact information in images.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900