Untitled

 avatar
unknown
jsp
5 months ago
502 B
3
Indexable
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
    <title>Test Servlet and JSP Integration</title>
</head>
<body>
    <h1>Welcome to JSP Page</h1>
    
    <p>
        <%-- Retrieve and display the message from the servlet --%>
        Message: <%= request.getAttribute("message") %>
    </p>
    
    <form action="testServletBiss" method="get">
        <input type="submit" value="Call Servlet Again">
    </form>
</body>
</html>
Editor is loading...
Leave a Comment