Fill out web form VB.Net

  • Thread starter Thread starter alfred
  • Start date Start date
This just opens up the google home page.

What is it that you want to know how to do?

Are you trying to just create a form? If so you want to check out a basic
HTML tutorial. Google will return hundreds of such websites.

Are you trying to populate values in text boxes within a form?
 
Herfried K. Wagner [MVP] ha scritto:
Take a look at the names of the textboxes of the page and the value of the
form's 'action' parameter. The name of the main textbox is 'q', for
example. Thus you can create a request on the URL
'http://www.google.com/search?q=Bla' to search for the text "Bla".

thanks..but if i want to enter in email box...so i can put into the
Login form and password form 2 values and press submit button. so how
can i do this?

ps.i don't want to write a parametric address (URL). I just want to
fill out the form. Thanks
 
alfred said:
thanks..but if i want to enter in email box...so i can put into the
Login form and password form 2 values and press submit button. so how
can i do this?

ps.i don't want to write a parametric address (URL). I just want to
fill out the form.

Well, when pressing the submit button a parameterized request is created.
Thus directly generating the request is the same as filling out the forms
and pressing submit.
 
but i don't want to use a parametrized request...i want to use to
filling out the input box...and press submit button..thanks
 
alfred said:
but i don't want to use a parametrized request...i want to use to
filling out the input box...and press submit button..thanks

Are you using a WebBrowser control? I think you will have to describe in
more detail what exactly you want to archieve.
 
yes i have a webbrowser control and i think i will use htmldocument
class to complete input box and press submit button...or not?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top