Reputation: 2163
I would like to have a URLs list, simply so i could have suggestions of commonly used urls, and bind a textbox to it as data source.
I assume every isp in the world has it, google +goolechrome +firefox can use it, how can i get hold of such common resoruce of information ?
I'll appreciate any clue at least where to start... so eventually i could make use of it with .net
Environment.
Upvotes: 1
Views: 103
Reputation: 1260
You can visit this site and try to get all the details present in Data-table where they are displaying these information.
http://www.google.com/adplanner/static/top1000
Search for this table and try to write a C# code may be wiping off the HTML before and after this table.
<table id="data-table">
I analysed this and they are displaying the entire data in this table with show/hide functionality.
So just for an idea, here are some tips:
<table>
Upvotes: 1
Reputation: 19465
So it seems you have about two choices:
Upvotes: 0