I want to develope a program that can make listing of all search results found from a database (pretty easy)...
The catch about this is that No one has access to the Database (not even read-only rights) so the best solution I can come up with is to do the following:
1. Retrieve the entire page of HTML that makes up the search results page
2. Parse for the particulars that I want.
3. throw them into my Data Structure
Then do the rest of my work.
I need to know if there are any prebuilt classes are simple methods to implementing step one. I just need to get the entire page into some format that I can process in C#. Any ideas?
The catch about this is that No one has access to the Database (not even read-only rights) so the best solution I can come up with is to do the following:
1. Retrieve the entire page of HTML that makes up the search results page
2. Parse for the particulars that I want.
3. throw them into my Data Structure
Then do the rest of my work.
I need to know if there are any prebuilt classes are simple methods to implementing step one. I just need to get the entire page into some format that I can process in C#. Any ideas?