fmt:message and variables?
Hello.
I must get a message from a bundle, the problem is that I get the key from a database
So when I try <fmt:message bundle="${bundle}" key="<%=myKey%>"/> I get an error saying it doesn't accepts expressions.
How can I use it or get the message from the bundle using a variable as the key?
Thanks in advance
Nevermind: found it:
<fmt:message bundle="${bundle}"><%=myKey%></fmt:message>
Message was edited by:
OniShiro

