Class 2 Intermediate Java 30-IT-397  

Tag JSP Example

<%@page contentType="text/html"%>
<html>
<head><title>JSP Page</title></head>
<body>

<%-- <jsp:useBean id="beanInstanceName" scope="session" class="package.class" /> --%>
<%-- <jsp:getProperty name="beanInstanceName"  property="propertyName" /> --%>

<!--

<%@ taglib uri="bjtaglib.tld" prefix="copy" %>

-->

<%@ taglib uri="/copy" prefix="copy" %>

<H1> Good Morning Message </H1>
<%= "Good Morning!" %>
<%= new java.util.Date() %>
<br>
<copy:copyright />

</body>
</html>
 

 Tag Library Descriptor in Depth

Created by:  Brandan Jones December 17, 2001