How to create a simple JSP program which displays date on the page?
Thanks
Hi,
You should import the java.util package:
<%@page contentType="text/html" import="java.util.*" %>
Then use the following code to print the current date:
<%= new java.util.Date() %>
Check complete tutorial at How to Create JSP Page?
Thanks