Raveesh Lawrance wrote:jsp file - That contains table with 3 Row values and one submit button, while clicking the submit button all the table values should pass to java class file using server.
Ok, here is what you required,
1. ActionForm(bean, with getter/setter property) : This holds you FORM/Table values
2. ActionClass (
servlet): Called upon when you click "Submit", Process your
requests
3. JSP page, (View), <table></table>
4. A java class with DB connection object and method which inserts data into DB
Can you get this ??