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.
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>
<%-- 修改action路径 --%>
<form action="${pageContext.request.contextPath}/major/add" method="post">
<table border="1" align="center" width="500">
<tr>
<td>专业ID: </td>
<td><input type="text" name="mid" placeholder="请输入专业ID"></td>
</tr>
<tr>
<td>专业名称:</td>
<td><input type="text" name="mname" placeholder="请输入专业名称"></td>
</tr>
<tr>
<td>所属院系:</td>
<td><input type="text" name="dept.dname" placeholder="请输入院系名称"></td>
</tr>
<tr>
<td align="center" colspan="2">
<input type="submit" value="提交">
<input type="reset" value="重置">
</td>
</tr>
</table>
</form>
</body>
</html>