JSP Tags |
JSP Tags
- Html Comment <!-- Comment -->
- JSP Hidden Comment <%-- Hidden Comment --%>
- JSP Script <% String strHelloWorld = "Hello
World" %>
- JSP Expression <%= strHelloWorld %>
- JSP declaration <%! ... %>
- JSP Include directive
<%@ include file="<|c>" %>
- JSP Page directive
<%@ page contentType="text/html; charset=ISO-8859-1" extends="<|c>" %>
- JSP Tag directive
<%@ taglib uri="" prefix="<|c>" %>
|