Basically what I am looking for is a way to have a program
automatically enter certain information in certain text fields and
then use a button. For example, I go to www.google.com automatically
and enter a search topic in the search field then hit enter, but all
of this automatically with a program. Is there a way to do this in
ASP.Net?
In the case of google, if you complete a search you will see that it performs
a form post with the GET method - so all your items are on the querystring.
If you use something like the WebClient class, all you need to do is ensure
that your search url looks just like what you see in the browser's address
bar on a real search. You can use the DownloadString method to capture the
HTML of the results page.