How to send a html form from an action

2003-01-24 Thread Johan
I try to submit a HTML FORM to an external site. I would like an Action to create the FORM Fields and send this form to the external site. I don't want de jsp-page send the form since I need to store the data from that form in a database before sending the data to the external site. Is it

RE: How to send a html form from an action

2003-01-24 Thread Pani, Gourav
I don't see why not. The Form object/DynaValidatorForm will capture the data, the Action object can do the update to your database and then you can set up a global-mapping to go to the ne page with hidden values in the request. Then it is up to the other page to get values out of your request.

Re: How to send a html form from an action

2003-01-24 Thread Johan
Thanx, But I was just trying to outsmart myself and I was pretty successfull in it to. Since people need to choose what paymentmethode they prefer (it was about sending a form to a payment system) I still need an extra page where the can choose and I put the hidden fields in a form. So I run