How can I create a form and then set an action, such as:
<form name='client_login_form_' action='http://www.dhsb.org/index.phtml?d=187209&destination_page=187224' method=post>
I need to do this with two UITextFields.
Once a button is pressed, the data needs to be taken from the two UITextFields then put into an action, like the HTML above.
Thanks!
Assuming that you want to submit a web form from an iOS app, take a look at
ASIHTTPRequest. From their docs:Fill in the values from your
UITextFields. And implement the delegate methods if you want to receive back a response.