Showing posts with label page. Show all posts
Showing posts with label page. Show all posts

JSP Programs -- Page attributes


<!-- page attributes -->

<html>
<head><title>Hello World</title></head>
<body>
     <h2>
          <%@ page import="java.util.*" %>
          <%= (new Date()).toLocaleString()%>
          <br/>
          <%= request.getRemoteAddr() %>
          <br/>
          <%= session.getCreationTime() %>
          </h2>
</body>
</html>