Though it may sound a bit silly,still I’m asking this conceptual and logical(as far as foe me :)) question :
In a jsp page Can I send it’s form data to more than one Servlet.. like :
form action="home","car" method="post" name="f1" or
form name='form' method='POST' action='car','home'
Any inputs…..//
On the client side, you can do submit the form to two different servlets through javascript, by specifying two different target windows to hold the response.
HTML:
Javascript:
Then you should have handlers to capture the IFRAME’s onload event to process the responses from the servlet.