Taavi Tiirik wrote:

>>I believe it's:
>>
>>  <webwork:property value="myProperty" id="myProperty"/>
>>
> 
> I thought the same but following does not work for me:
> 
> <webwork:property value="myProperty" id="myProperty"/>
> 
> <%
>     String s = myProperty;
> %>
> 
> How should I write this jsp part to get it working?


<%
   String s = request.getAttribute("myProperty");
%>

or simply:
<%
   String s = (String)ValueStack.getStack(request).findValue("myProperty");
%>

without the tag stuff.

/Rickard

-- 
Rickard Öberg



_______________________________________________
Webwork-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/webwork-user

Reply via email to