How can i pass form object (objDataform) to jsp so that in JSP i can retrieve values of fileds on the form and insert their values into a table.
Generally, let say you have a form like below:
Then in the JSP, you can do this to retrieve the value of the text field from the form:
You can then add code to insert to your table.
Like Bear mentioned, you can't pass the form itself.
Is this somewhat you're looking for?
Hopefully it helps a little bit at least.