LoneXcoder
LoneXcoder

Reputation: 2163

URLs List / Datasource to use via .net application

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

Answers (2)

Amin Sayed
Amin Sayed

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:

  • Read the entire HTML of this site. Store it in a text file.
  • Do a substring and wipe of all the HTML before and after this <table>
  • Use some Regex to extract the necessary data present in this table

Upvotes: 1

gideon
gideon

Reputation: 19465

So it seems you have about two choices:

Upvotes: 0

Related Questions