Hi,
Since I upgraded to MyEclipse 5, I get an error when there is something like the following code in my JSPs :
...
<c:choose>
<c:when test="${sessionScope.modePopup == 'true'}">
<body class="popup">
</c:when>
<c:otherwise>
<body>
</c:otherwise>
</c:choose>
...
</body>
I get the error :
No start tag (<body>).
Fonctionnally, this construct works fine in my application.
Where can I deactivate this kind of error reporting for JSPs ?
Regards
A. ROY