RE: How to fill textfields from FormBean?

2003-09-16 Thread James
Yes, take a look at how it is done in the struts-example application. -- James Mitchell Software Engineer / Struts Evangelist http://www.struts-atlanta.org 678.910.8017 AIM:jmitchtx -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 16,

RE: How to fill textfields from FormBean?

2003-09-16 Thread Andrew Hill
first stop should be to go have a look at the example app. If you have any questions about it do feel to post them :-) -Original Message- From: James [mailto:[EMAIL PROTECTED] Sent: Tuesday, 16 September 2003 22:59 To: 'Struts Users Mailing List' Subject: RE: How to fill textfields from

Re: How to fill textfields from FormBean?

2003-09-16 Thread Barry Volpe
Use the form bean in your action something like this: public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request,HttpServletResponse response) throws IOException, ServletException { RegForm form = null; form = new RegForm(); //The following is an