Re: Struts Form Values are null

2007-03-18 Thread Dave Newton
--- [EMAIL PROTECTED] wrote: > property="userID" >styleClass="usertextbox"/> > [...] > Is there any reason for the userID to be null? I don't really remember much about S1 ActionForms, but do the properties have to be valid JavaBean fields, i.e. it should be userId? You do

Re: Struts Form Values are null

2007-03-18 Thread Martin Gainty
assuming you have some manner of userForm extending actionForm public class userForm extends ActionForm { //accessors //mutators //reset //validate }; //and then have an Action Class coded somthing like public class userAction extends Action { //execute method }; //struts-config.xml will need a def