Re: Setting bean property with custom tag

2001-11-02 Thread Ted Husted
If you want to set a value that is part of an ActionForm, you can use html:hidden. Note that the Struts html:form tag will automatically create a bean if it is not already in the expected scope. An Action will also create a ActionForm bean if it is missing. Otherwise, you need to create it

Setting bean property with custom tag

2001-10-31 Thread Graham King
I'm building my first struts App and would appreciate some help with the following: Currently I have a JSP with the following code: jsp:useBean id=nameForm class=com.myapp.NameForm scope=session/ jsp:setProperty name=nameForm property=surname value=bob / *** SUMMARY: Essentially I want