| Author |
A jsp scriptlet question
|
Ramina Nibilian
Ranch Hand
Joined: Mar 30, 2005
Posts: 65
|
|
Hello , thank you for reading my post. I have a jsp file which i define some String array variable in it : for example : <% String [] StrindOfSystem = {"strSys1","StrSys2","",""} %> I used content of this array in some places , no i want to be able to internationalize it I tried using <bean:message key="str1" /> in place of any " StrSys " but it can not read the data can you pleas tell me how i can solve it ?
|
 |
leon fan
Greenhorn
Joined: Aug 02, 2004
Posts: 19
|
|
|
The reason is that JSP expressions, scriptlets, and declarations only let you insert simple Java code, So Scriptlets won't support tag inline.
|
 |
giri viswanadhuni
Greenhorn
Joined: Jun 08, 2005
Posts: 1
|
|
|
Try the same using tag libraries.
|
 |
kirtikumar patel
Greenhorn
Joined: Jun 29, 2005
Posts: 14
|
|
hi! you can resolve this problem by used of Messages object in frame work and you can get message one by one as object and add it into messages collection obj.
|
kirti patel<br />software engiener<br />pune
|
 |
 |
|
|
subject: A jsp scriptlet question
|
|
|