This week's book giveaway is in the Design and Architecture forum. We're giving away four copies of Communication Patterns: A Guide for Developers and Architects and have Jacqui Read on-line! See this thread for details.
i am having one jsp file that contains table with 3 row datas. i want to collect all the table data values and stroe it in DB while clicking the submit button. how to do that... please help me.... Thanks in advance....
You have to manually get all values and append it to the url before submitting.
It would be great if you post your JSP.We can suggest something else after seeing the JSP
Create a DAO class which does the save task using JDBC.
Create a servlet class which does the request processing task and invokes the DAO class.
Let your JSP submit to that servlet.