Java Server Page

JSP Projects

JSP Project

adplus-dvertising
Write a program that display Hello R4R Tech Soft
Previous Home Next
Save that program as a helloR4R.jsp

Note: Place it in the correct directory on your JSP web server/ Java Platform.

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@page import="java.util.*" %>

<!program for display the "Hello R4R Tech Soft!">
<!save as a helloR4R.jsp >
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>R4R Tech Soft</title>
    </head>
    <body>
        <h1>Hello R4R Tech Soft!</h1>
    </body>
</html>
Output:
Previous Home Next