%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
登录深圳信息职业技术学院校运会系统
深圳信息职业技术学院校运会登陆界面
Shenzhen Vocational and Technical College of Information
Enrollment for School Games
<%
String msg = (String) request.getAttribute("msg");
Cookie[] cookies = request.getCookies();
String cUser = "";
String cPassword = "";
if (cookies != null) {
int x = cookies.length;
for (int i = 0; i < x; i++) {
Cookie cookie = cookies[i];
if ("user".equals(cookie.getName())) {
cUser = cookie.getValue();
}
if ("password".equals(cookie.getName())) {
cPassword = cookie.getValue();
}
}
}
%>
<%=msg == null ? "" : msg%>