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
518 B
17 lines
518 B
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
|
<html>
|
|
<head>
|
|
<title>Title</title>
|
|
</head>
|
|
<body>
|
|
<h2>学生信息</h2>
|
|
<form action="/day/studentAddServlet" method="post">
|
|
<input type="text" name="id" placeholder="学号">
|
|
<input type="text" name="name" placeholder="姓名">
|
|
<input type="text" name="sex" placeholder="性别">
|
|
<input type="text" name="major" placeholder="专业">
|
|
<input type="submit" value="提交">
|
|
</form>
|
|
</body>
|
|
</html>
|