The question is:
I can get the property value from the action class using:
<s:property value="%{variable}" /></TD>
and now i want to put this variable into the query string like:
<a href="http://www.sample.com/sample.jsp?name=${variable}">Visit W3fools.com</a>,
but this format is for a plian JSP variable, which format i should use for this case?
I would say use the link with
${variable}Because
<s:property value="%{variable}" />takes more time to execute.See their difference