RE: Handling attribute values

2006-06-07 Thread Maya menon
From: Maya menon [mailto:[EMAIL PROTECTED] Sent: 07 June 2006 15:21 To: Struts Users Mailing List Subject: RE: Handling attribute values Manoj, Yes, I am storing a vector in request attribute. Using session attribute, I am not feeling comfortable. Because the application can be accessed simultan

RE: Handling attribute values

2006-06-07 Thread manoj.tripathi
ou can use hidden values to pass the values around which you want to manage Cheers -Original Message- From: Maya menon [mailto:[EMAIL PROTECTED] Sent: 07 June 2006 15:21 To: Struts Users Mailing List Subject: RE: Handling attribute values Manoj, Yes, I am storing a vector in request

RE: Handling attribute values

2006-06-07 Thread Maya menon
[mailto:[EMAIL PROTECTED] Sent: 07 June 2006 14:52 To: user@struts.apache.org Subject: Handling attribute values Hi all, 1. I have an action class, DisplayAction which displays the records from database. Here I am setting a vector into the request scope and on success forwarding it to

RE: Handling attribute values

2006-06-07 Thread manoj.tripathi
menon [mailto:[EMAIL PROTECTED] Sent: 07 June 2006 14:52 To: user@struts.apache.org Subject: Handling attribute values Hi all, 1. I have an action class, DisplayAction which displays the records from database. Here I am setting a vector into the request scope and on success forwarding it to

Handling attribute values

2006-06-07 Thread Maya menon
Hi all, 1. I have an action class, DisplayAction which displays the records from database. Here I am setting a vector into the request scope and on success forwarding it to displayresults.jsp. 2. Display results.jsp displays all records with an option of delete to the users. 3