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.
40 lines
1.1 KiB
40 lines
1.1 KiB
<%--
|
|
Created by IntelliJ IDEA.
|
|
User: Administrator
|
|
Date: 2026/5/16
|
|
Time: 15:08
|
|
To change this template use File | Settings | File Templates.
|
|
--%>
|
|
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>公告信息录入</title>
|
|
</head>
|
|
<body>
|
|
|
|
<%-- 表单提交到公告新增处理接口 --%>
|
|
<form action="${pageContext.request.contextPath}/ann/addAnn" method="post">
|
|
|
|
<h2>公告信息录入</h2>
|
|
|
|
公告编号:<input type="text" name="annId"><br><br>
|
|
公告标题:<input type="text" name="annTitle"><br><br>
|
|
发布作者:<input type="text" name="author"><br><br>
|
|
是否置顶:
|
|
<select name="isTop">
|
|
<option value="1">是</option>
|
|
<option value="0">否</option>
|
|
</select><br><br>
|
|
所属分类:<input type="text" name="category"><br><br>
|
|
发布日期:<input type="date" name="createTime"><br><br>
|
|
公告内容:
|
|
<textarea name="annContent" rows="5" cols="30"></textarea><br><br>
|
|
|
|
<input type="submit" value="提交公告">
|
|
<input type="reset" value="重置">
|
|
|
|
</form>
|
|
|
|
</body>
|
|
</html> |