Hi Can someone please give me the syntax for defining the action using the contents of formAction in the <html:form> line.
> > <bean:define id="formAction" >defaultAction</bean:define> > > <logic:equal name="testPageBean" property="typeOfProcess" value="add"> > <bean:define id="formAction" >/addUser</bean:define> > </logic:equal> > > <logic:equal name="testPageBean" property="typeOfProcess" value="modify"> > <bean:define id="formAction" >/modifyUser</bean:define> > </logic:equal> > > > <html:form action='<bean:write name="formAction">' focus="username"> > or > <html:form action='<%=formAction%>' focus="username"> I get errors when I try and use the above two ways to try and define the action. Cheers Tony > > > Patrick > > > Antony Stace wrote: > > >Hi Ladies and Gentlemen > > > >I want to use <logic:equals> tags around a <html:form action> but I am having > >errors. I am not sure if this is allowed in struts. Can someone please >confirmthat this is not or is allowed in struts. > > > >The code I have is > > > >--------------------------snip---------------------------- > > > ><logic:equal name="testPageBean" property="typeOfProcess" value="add"> > ><html:form action="/addUser" focus="username"> > ></logic:equal> > ><logic:equal name="testPageBean" property="typeOfProcess" value="modify"> > ><html:form action="/modifyUser" focus="username"> > ></logic:equal> > >....rest of form definition > > > >--------------------------snip----------------------------- > > > >The error I am getting is > > > >org.apache.jasper.compiler.ParseException: /WEB-INF/pages/clientDetails.jsp(21,0) >??????????????: ???? </logic:equal> ??????????????????? > > at org.apache.jasper.compiler.Parser$Tag.accept(Parser.java) > > at org.apache.jasper.compiler.Parser.parse(Parser.java) > > at org.apache.jasper.compiler.Parser.parse(Parser.java) > > at org.apache.jasper.compiler.Parser$Tag.accept(Parser.java) > > at org.apache.jasper.compiler.Parser.parse(Parser.java) > > at org.apache.jasper.compiler.Parser.parse(Parser.java) > > at org.apache.jasper.compiler.Parser$Tag.accept(Parser.java) > > at org.apache.jasper.compiler.Parser.parse(Parser.java) > > at org.apache.jasper.compiler.Parser.parse(Parser.java) > > at org.apache.jasper.compiler.Parser$Tag.accept(Parser.java) > > at org.apache.jasper.compiler.Parser.parse(Parser.java) > > > > > > > > > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

