I am stuck with the following code. On a JSP page, I want to write different things depending on the terminal the browser is accepted on. the terminal value is set properly in the controller but when executing the following code, all the 3 c:if conditions are considered valid and the three sentences are displayed
<c:if test="${terminal=='android'}">
<p>you are on android</p>
</c:if>
<c:if test="${terminal=='iphone'}">
<p>you are on iphone </p>
</c:if>
<c:if test="${terminal=='other'}">
<p>you are on an other terminal </p>
</c:if>
To check whether the condition was ok, I added the following code which gives correctly true, false, false when accessing from an Android..
<p> ${terminal=='android'}</p>
<p>${terminal=='iphone'}</p>
<p>${terminal=='other'}</p>
Thanks in advance