<%@ 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>
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter