Re: Preloading ActionForm data from database (newbie question)

2001-07-15 Thread Gerald Hanks
orm { > void populate(ClientInfoBean cib) {...} > } > > Of course, there are caveats with any approach, and there is always another > way to skin a cat etc.. However, this approach has worked quite well for me > on several projects. > > HTH, > Levi > > - Origin

Re: Preloading ActionForm data from database (newbie question)

2001-07-15 Thread Levi Cook
ach has worked quite well for me on several projects. HTH, Levi - Original Message - From: "Gerald Hanks" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, July 15, 2001 7:55 AM Subject: Re: Preloading ActionForm data from database (newbie question) > Kla

Re: Preloading ActionForm data from database (newbie question)

2001-07-15 Thread Gerald Hanks
Klaus, Thank you for the response. Let me see if I can explain a little bit more about what I have done and see if this changes your answer at all. I have two jsp forms right now. One is login.jsp and the other is signup.jsp. Each one has an associated Form and Action. If the login fails it

Re: Preloading ActionForm data from database (newbie question)

2001-07-15 Thread Klaus Thiele
hi gerald, i don't now if i really understand your problem. in my opinion, the ClientInfoForm has noting to do with your ClientInfoBean. i would prefere this (regards to the struts-sample-app): 1) logon.jsp - LogonAction - LogonForm LogonForm validates the fields username and password are fill

Preloading ActionForm data from database (newbie question)

2001-07-14 Thread Gerald Hanks
I started an app where I have a client login and jump to a main menu. >From that menu the client can modify their account info. I have a ClientInfoForm bean, a ClientInfoAction and a clientinfo.jsp input form. I have also created a ClientInfoBean which has all of the business logic to retrieve th