Re: AW: possible to keep old and new values inside of a form bean

2001-12-14 Thread Keith Bacon
n [mailto:[EMAIL PROTECTED]] > Gesendet am: Friday, December 14, 2001 3:00 PM > An: Struts Users Mailing List > Betreff: Re: possible to keep old and new values > inside of a form bean > > Hi Fehmi. > I think you should do things like this in your > Action > class ra

RE: possible to keep old and new values inside of a form bean

2001-12-14 Thread Krueger, Jeff
the original value to the old variable and then set the new value into your variable. Jeff Krueger -Original Message- From: Hudayioglu, Fehmi To: 'Struts Users Mailing List' Sent: 12/14/2001 9:17 AM Subject: AW: possible to keep old and new values inside of a form bean Aga

AW: possible to keep old and new values inside of a form bean

2001-12-14 Thread Hudayioglu, Fehmi
Bacon [mailto:[EMAIL PROTECTED]] Gesendet am: Friday, December 14, 2001 3:00 PM An: Struts Users Mailing List Betreff: Re: possible to keep old and new values inside of a form bean Hi Fehmi. I think you should do things like this in your Action class rather than the Form bean - which should strictly

Re: possible to keep old and new values inside of a form bean

2001-12-14 Thread Keith Bacon
Hi Fehmi. I think you should do things like this in your Action class rather than the Form bean - which should strictly be used for data that goes from forms to Action class & vice versa. This is part of your business logic (or maybe of DB integrity checking) - so if your system is large(ish) you'

possible to keep old and new values inside of a form bean

2001-12-14 Thread Hudayioglu, Fehmi
Hi folks, I am sending two values to form bean and then user have the privilege to change these two values. To restore the database I must also store the old values that I have conveyed to screen from the formbean but as the user alters the data my old values are vanished. What will be the effect