Creating your first JSP page


 <html>
<head>
<title>My first JSP page
</title>
</head>
<body>
<%@ page language=”java” %>
<% out.println(“ProgrammingVilla”); %>
</body>
</html>

Type the code above into a text file. Name the file myfirst.jsp.

Place this in the correct directory on your JSP web server and call it via your browser.

Leave a Reply

Your email address will not be published. Required fields are marked *