Class 2 Intermediate Java 30-IT-397  

Good Morning 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" /> --%>

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

</body>
</html>
 

 More about expressions

Created by:  Brandan Jones December 17, 2001