D
ddog
I have the following problem:
I have been given a form by the Other Company to insert into our
company's website. After the form has been submitted and validated it
needs to be posted to the Other Company's site. Our company uses Java
and jsp pages, the Other Company uses Cold Fusion.
This is the example of the form I was given by the Other Company:
< form name="quick_search_form"
action="http://www.othercompany.com/search_router.cfm" method="post" >
The form is validated, either through JavaScript or via Java server
side. I've worked out the server-side validation and I"m using
response.sendRedirect("success.jsp") for a successful validation test.
Obviously, the sendRedirect or something similar needs to be used to
send the form to the Other Companys
site upon successful validation.
My question is this: how can I re-post the form after it passes
validation to the Other Company's site? Is this possible or is my idea
totally wrong? I could use JavaScript to do it all but I'd rather not
if possible.
Thanks!
I have been given a form by the Other Company to insert into our
company's website. After the form has been submitted and validated it
needs to be posted to the Other Company's site. Our company uses Java
and jsp pages, the Other Company uses Cold Fusion.
This is the example of the form I was given by the Other Company:
< form name="quick_search_form"
action="http://www.othercompany.com/search_router.cfm" method="post" >
The form is validated, either through JavaScript or via Java server
side. I've worked out the server-side validation and I"m using
response.sendRedirect("success.jsp") for a successful validation test.
Obviously, the sendRedirect or something similar needs to be used to
send the form to the Other Companys
site upon successful validation.
My question is this: how can I re-post the form after it passes
validation to the Other Company's site? Is this possible or is my idea
totally wrong? I could use JavaScript to do it all but I'd rather not
if possible.
Thanks!