Hai,
Whether it is possible to use two submit buttons in same page(Jsp)
Thanks in Advance
P.Padmanabhan
You can use two submit button in the same page, if they are in the same form, they will do the same action (the action of the form) but you'll get in the Query string the name=value of the one clicked,
or you put 2 forms on your page with 2 actions and 1 button submit in each.
You can use two submit button in the same page, if they are in the same form, they will do the same action (the action of the form) but you'll get in the Query string the name=value of the one clicked,
or you put 2 forms on your page with 2 actions and 1 button submit in each.
Thanks for your reply.
But when i submit sequentially, the first form get submitted and as a result the page get refreshed and the second form is not submitted.
Thanks for your reply.
But when i submit sequentially, the first form get submitted and as a result the page get refreshed and the second form is not submitted.
thanks,
Raja
Do you mean that you want 2 forms to be submitted at the same time to 2 different urls or both to be submitted at the same time to the same url
Comment