More JSP Programss

3 views
Skip to first unread message

nandu

unread,
Jan 13, 2007, 6:06:25 AM1/13/07
to Open Projects For All
Structuree

//struct.jsp


<%--This is the HTML content --%>
<%@ page language= "java" %>
<html>
<head><title>Simple JSP example></title></head>
<body>
<h1>This is a code within the jsp tags to display the server
time </h1>
<%--This is the JSP content that displays the servertime by
using the Date class of java.util. package--%>
<% java.util.Date now = new java.util.Date(); %>
<h2><%= now.getHours() %>:<% =now.getMinutes() %>:<%
=now.getSeconds() %></h2>
</body>
</html>

//struct.html


<%--This is the HTML content --%>
<% page language= "java" %>
<html>
<head><title>Simple JSP example></title></head>
<body>
<h1>This is a code within the jsp tags to display the server
time </h1>
<%--This is the JSP content that displays the servertime by
using the Date class of java.util. package--%>
<% java.util.Date now = new java.util.Date(); %>
<h2><% =now.getHours() %>:<% =now.getMinutes() %>:<%
=now.getSeconds() %></h2>
</body>
</html>

Reply all
Reply to author
Forward
0 new messages