Re: ActionForm Problem

2002-02-19 Thread Fernando Esteban Barril Otero
You need to follow the JavaBeans convention. If you have a setUserName() and a getUserName(), you need to set the property name to userName and so on. Fernando - Original Message - From: Tom Bednarz [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 19, 2002 2:00 PM

Re: ActionForm Problem

2002-02-19 Thread Amir N. Nashat
you should be using the struts html tags if you want to use the form bean...or else you would have to create the form bean object and explicitly set the values for each input tag. i suggest using the html tags...something like this: YOUR EXAMPLE input type=text name=UserName value= size=30