Re: actionForm class

2005-08-13 Thread Nafise Dianatizade
at the whole you need a DTO(Data Transfer Object) for transferring the student fetched data to the jsp page. So you could specify an object for this purpose or use your predefine actionForm object. you could use bean:write for both specified DTO and ActionForm object to display the information

Re: actionForm class

2005-08-13 Thread Richard Yee
Balkan, The values retrieved from the database don't need to be put into an ActionForm. Just put the collection or bean as a session or request attribute in your Action class, forward to your second page, and then retrieve the values and display them. There is no need to have an ActionForm ass

Re: actionForm class

2005-08-13 Thread Sebastian Hennebrueder
Balkan Guler schrieb: >Hello. > There is something I could not understand with actionForms. > Suppose that I have 2 pages and a action. >In first page I want to take student number and call the business objects in >action to fetch the student details from database and show them in the >second p