I have a simple question, for a change... :) Given
<% String value="some Value" %> and <html:link action='/scopeAction?row=???'> how do I append the java var 'value' to the end of the action? If I hardcode it, it works and the behaviour is as expected, i.e.: <html:link action='/scopeAction?row=3'> Note I have tried the following and failed: <html:link action='/scopeAction?row=<=value>' <html:link action='/scopeAction?row="<=value>"' <html:link action="/scopeAction?row='<=value>'" Also searched on internet but didn't find anything as yet... regards NOTE: I don't want to use <html:hidden property="row" value="<%=value>"/> in this instance... --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

