HELPPPPP

  • Thread starter Thread starter Carmine
  • Start date Start date
C

Carmine

Hello NG,
I want to know if there is a c# method that allow me to post some
values to an HTML page.
What I mean is that: I have a c# form with some textboxs and a button.
what i want to do is: fill in these textboxs, click the button and
send the values to a dynamic web page using the post method.


Could someone help me?

Regards
katia
 
Carmine said:
I want to know if there is a c# method that allow me to post some
values to an HTML page.
What I mean is that: I have a c# form with some textboxs and a button.
what i want to do is: fill in these textboxs, click the button and
send the values to a dynamic web page using the post method.

Hi Katia,

take a look at the WebClient-Class:
http://msdn.microsoft.com/library/?...ef/html/frlrfSystemNetWebClientClassTopic.asp

WebClient offerts a method called UploadValues.
http://msdn.microsoft.com/library/?...fsystemnetwebclientclassuploadvaluestopic.asp

The Class is well-documented.

Cheers

Arne Janning
 

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