How to post data?

  • Thread starter Thread starter MasoodAdnan
  • Start date Start date
M

MasoodAdnan

How can I post data to websites, using windows app?

For example, I have a windows app (vb.net) which has some user inputs
and then it wants to post data to monster.com. This way user won't
have to go to monster.com and put search criteria and all. User can
just do all of that from windows app. Question is how? How do you set
values in checkboxes, radiobuttons, text boxes, and then post data?

Thanks
 
Well,

That would depend upon how monster does its forms.
HTTP_POST or HTTP_GET

i.e. does it use the params in the URL after the ? or does it pass it the
other way using a POST. Which are you wanting to do?

The GET would be easily a matter of calling the site and passing the params
along with values as expected.

I am not sure abot post without reading up on it.

Shane
 

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