(二)登录功能实现
1. 编写前端页面
若jsp页面中文乱码:在jsp中指定页面显示的编码为GBK
添加page命令
<%@ page language="java" contentType="text/html; charset=GBK" %>
参考:https://www.cnblogs.com/beijiguangyong/archive/2012/03/31/2437124.html
*其他所有出现编码的地方也要改掉
2. 编写login.jsp,并设置为首页
-
login.jsp
<%@ page language="java" contentType="text/html; charset=GBK" %> <!DOCTYPE html> <html lang="en"> <head> <meta charset="GBK"> <title>用户登录</title> </head> <body> <form action="${pageContext.request.contextPath}/studentServlet" method="post"> <div class="errorInfo">${error}</div> <p>学号:<input type="text" size="20" name="stuNo"></p>