index2.jsp 546 B

12345678910111213141516
  1. <%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %>
  2. <html>
  3. <head>
  4. <title>首页</title>
  5. </head>
  6. <body>
  7. <form action="/stu/add" method="post">
  8. 学号:<input type="text" name="stuid"><br>
  9. 姓名 :<input type="text" name="stuname"><br>
  10. 班级:<input type="text" name="stuclass"><br>
  11. 宿舍:<input type="text" name="studormitory"><br>
  12. <input type="submit" value="新增"><br>
  13. <a href="${pageContext.request.contextPath}/stu/findAll">查询所有学生</a>
  14. </form>
  15. </body>
  16. </html>