0

Why is eclipse saying 'No end Tag (</c:if>).' on line 1 and 'No start tag (<c:if>)' on line 4 of the following code snippet:

<c:if test="${ShowLoginLink}">
    Log in again and export the document as PDF.</p>
    <a href="${LoginLink}"><img src="<%= request.getContextPath() %>/images/linkIcon.jpg" width="17" height="17" style="float:left; padding-right: 3px; border: none;"/>Log In</a>
</c:if>

It works fine at runtime on the server. I am just annoyed with eclipse validation.

Boiler Bill
  • 1,900
  • 1
  • 22
  • 32

2 Answers2

2

you have a missing start paragraph see line 2

Joelio
  • 4,621
  • 6
  • 44
  • 80
1

If you dont want to get bugged by this validation you can simple disable all validations by right clicking on your project> validations> disable all validations.

user510482
  • 11
  • 2