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.

35 lines
671 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: 86155
Date: 2026/5/19
Time: 11:05
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>
<table>
<tr>
<td>课程ID</td>
<td>${course.courseId}</td>
</tr>
<tr>
<td>课程名称:</td>
<td>${course.courseName}</td>
</tr>
<tr>
<td>学分:</td>
<td>${course.credit}</td>
</tr>
<tr>
<td>授课教师:</td>
<td>${course.teacher}</td>
</tr>
</table>
</body>
</html>