Hi ,
I am displaying the Employee Records from DataBase into a
JSP
I mean the Employee means , its a bean with properties as EMPID , EMPNAME , EMPAGE , EMPDEPT .
I am making a query to Database from my
servlet and when data is stored i am storing all the records in a ArrayList , and forwarding this ArrayList to a JSP Page to print them .
Upto here its working fine .
After dipslaying this Employee Data inside the JSP Page , the user can modify the Employee details and clicks on save it should update the Modified data in Database , here i need to transfer the whole modified DTO of Employee Object .
Please tell me how can i transfer the Employee Object to servlet from my JSP Page ??
Please share your ideas , thnaks in advance .
Thanks in advance .