JSP Date

PHOTO EMBED

Fri Nov 15 2024 19:00:08 GMT+0000 (Coordinated Universal Time)

Saved by @signup_returns

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
    <title>Simple JSP Program</title>
</head>
<body>
    <h2>Welcome to My First JSP Program!</h2>
    <% 
        // Declaring a simple variable
        String userName = "User";
        // Getting the current date and time
        java.util.Date currentDate = new java.util.Date();
    %>
    <p>Hello, <%= userName %>!</p>
    <p>Current Date and Time: <%= currentDate %></p>
</body>
</html>
content_copyCOPY