java-web/examples/chapter04/welcome.jsp

11 lines
258 B
Plaintext
Raw Normal View History

2024-08-08 00:53:48 +08:00
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<title>欢迎页面</title>
</head>
<body>
<h1>热烈欢迎!</h1>
<p><%= request.getAttribute("message") %></p>
</body>
</html>