You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by Barry Volpe <st...@childrencare.com> on 2003/10/23 20:45:09 UTC

Hi,


In my example
 
type=ViewResults

 and the following line will work
(I could not get it to work with a c:out or a bean:write):

<html-el:form action="/${param.type}"> 

${param.type} is translated into /ViewResults and that's okay.

Not complaining since I can directly put the JSTL in the action.

My question is how can I have type=Results and embed
the word "View" in the action I tried the following but get an error.

<html-el:form action="/View${param.type}"> 

would expect this to be evaluated to /ViewResults but again
get an error?

Any suggestions?

Barry