Eclipse 3.4 JSP验证问题
为什么 Eclipse 在第 1 行显示 'No end Tag ().'
和 'No start tag (
以下代码片段的第 4 行:
<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>
它在服务器上运行时运行良好。我只是对 eclipse 验证感到恼火。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您缺少开始段落请参阅第2行
you have a missing start paragraph see line 2
如果您不想因此验证而被漏洞,则可以通过右键单击您的项目来简单禁用所有验证。验证>禁用所有验证。
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.