2009-07-23 52 views
0

是否有可能做這樣的事情:的Struts 1 MessageRessources - 參數

<bean:message bundle="MyBundle" key="mytext.text" 
    arg0='<input type="text" name="text" value="<%=num %>"'/> 

我知道這是可能通過一個HTML元素,但我最終會與價值「<%=num%>一個輸入框「而不是該變量的實際值。我錯過了什麼?

回答

0

你不能用一個字符串相結合的scriptlet爲標記的說法,就像你看到的小腳本不計算這樣嘗試:

<% String s = "<input type=\"text\" name=\"text\" value=\""+ num +"\"" %> 
<bean:message bundle="MyBundle" key="mytext.text" arg0="<%= s %>"/> 

,請注意該輸入標籤未關閉作爲例子,你提供。