Hi,
I am having a String variable declared in my JSP. I would like to assign that value to the attribute of a JSTL tag. ie
in welcome.jsp, i have the following code..
<%
String myLocale=mySession.myProfile().getLocale().toString();
%>
When I am assigning the value of myLocale to JSTL tag , ie..
<fmt:setLocale value="${myLocale}" />
the value of myLocale is not assigned properly. fmt tag takes the
en-US locale all the time, evenif ,
myLocale can have
ja-JP,ko-KR etc..
How can i do this assignment ..? Thanks in advance and waiting for your response..
Aneesh K