Hello can someone explain me how i should use the <c:out tag in my situation:
i have a bean "theBean" with a getter
getText(String textid){
...
...
return result;
}
and somewhere ist set:
session.setAttribute("abean",theBean);
how can i print now the result in my page?
<c:out value="${abean.text['xxxxxxx']}"/>
didnt work
Someone knows the solution?
Thanks for any help
Michael

