My jsp has 2 independent dbforms...
Onclick of a button i need to submit the jsp containing the 2 dbforms...
I have tried using document.dbform.submit() and document.all.dbform.submit(),but none of these are working..
Could you please tell me whether there is any other way of doing this?
Waiting in anticipation
Vinoth
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
My jsp has 2 independent dbforms...
Onclick of a button i need to submit the jsp containing the 2 dbforms...
I have tried using document.dbform.submit() and document.all.dbform.submit(),but none of these are working..
Could you please tell me whether there is any other way of doing this?
Waiting in anticipation
Vinoth
the form has a name so
formname.submit()
I think that could'nt work. You can only submit one html form at once.
Maybe a construct with subforms works? Then you only have one form html form.
Cheers
Henner