You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
481 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>添加留言</title>
</head>
<body>
<h3>添加留言</h3>
<form action="message/add" method="post">
留言ID<input type="text" name="msgId"><br>
留言内容:<input type="text" name="content"><br>
留言人:<input type="text" name="author"><br>
留言时间:<input type="text" name="createTime"><br>
<input type="submit" value="提交">
</form>
</body>
</html>