OGNL treats a character in single-quotes as an actual character, not a String. So this statement will not return your desired result.
<s:if test="%{state=='N'}">
This will work.
<s:if test="%{state=='NE'}">
</s:if>
OGNL treats a character in single-quotes as an actual character, not a String. So this statement will not return your desired result.
Posted by iCehaNgeR's hAcK NoteS at 11:54 AM
0 Comments:
Post a Comment