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.

26 lines
794 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.

<%--
Created by IntelliJ IDEA.
User: dqq
Date: 2026/5/19
Time: 11:42
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>成绩信息</title>
</head>
<body>
<h3>成绩信息</h3>
<form action="addScore" method="post">
学生ID<input type="text" name="studentId" placeholder="请输入学生ID"><br>
课程名称:<input type="text" name="courseName" placeholder="请输入课程名称"><br>
成绩:<input type="text" name="grade" placeholder="请输入成绩"><br>
学期:<input type="text" name="semester" placeholder="请输入第几学期"><br>
<input type="submit" value="提交">
<input type="reset" value="重置">
</form>
</body>
</html>