Jsp Include Static HTML : Include « JSP « Java
- Java
- JSP
- Include
Jsp Include Static HTML
//File: includeTest.jsp
<HTML>
<HEAD><TITLE> Include Test </TITLE></HEAD>
<BODY>
I should see this <br>
<%@ include file="insert.html" %>
<br><br>
If I don't, then the URL is not working...
</BODY>
</HTML>
/////////////////////////////////////////////
//File: insert.html
right below the line that reads: "I should see this"
JspIncludeStaticHTML.zip( 89 k)Related examples in the same category