J2EE Programming

Hands On No. 7 : Display Hello World on the screen using JSP

Source Code of JSP
                                

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<h1><% out.print("Hello World"); %></h1>
</body>
</html>