> <html:hidden property="command"
> value='<%=request.getParameter("command") %>'/>
>
You don't need to use scriptlets in jsps when you are using action
forms. in fact thats one of the reasons for using actionforms and it
keeps your framework in an an MVC stylee. putting scriptlets in jsps is
mixing the Controller with the View when they should be separate. try
and do all your jsp coding using taglibs.
You need to have your 'command' field in your action form (as you say
you have) and you need getter and setter methods for that field. Also
you need to specify your action form class in the name attribute of
your action tag in your struts config.
then it will work.
cheers
matthew
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>