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.
105 lines
3.3 KiB
105 lines
3.3 KiB
5 years ago
|
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
|
||
|
<%
|
||
|
String path = request.getContextPath();
|
||
|
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
|
||
|
%>
|
||
|
<%@ taglib prefix="s" uri="/struts-tags"%>
|
||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>校园宿舍管理系统</title>
|
||
|
<base href="<%=basePath%>">
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||
|
<link href="Style/Style.css" rel="stylesheet" type="text/css" />
|
||
|
</head>
|
||
|
<script language="JavaScript">
|
||
|
|
||
|
|
||
|
function mycheck(){
|
||
|
if(isNull(form1.Student_Username.value)){
|
||
|
alert("请输入学号!");
|
||
|
return false;
|
||
|
}
|
||
|
if(isNull(form1.Student_Password.value)){
|
||
|
alert("请输入密码!");
|
||
|
return false;
|
||
|
}
|
||
|
if(isNull(form1.Student_Password2.value)){
|
||
|
alert("请输入重复密码!");
|
||
|
return false;
|
||
|
}
|
||
|
if (document.form1.Student_Password.value != document.form1.Student_Password2.value) {
|
||
|
alert("您两次输入的新密码不一致!请重新输入!");
|
||
|
return false;
|
||
|
}
|
||
|
if(isNull(form1.Student_Name.value)){
|
||
|
alert("请输入姓名!");
|
||
|
return false;
|
||
|
}
|
||
|
if(isNull(form1.Student_Sex.value)){
|
||
|
alert("请选择性别!");
|
||
|
return false;
|
||
|
}
|
||
|
if(isNull(form1.Student_Class.value)){
|
||
|
alert("请输入班级!");
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function isNull(str){
|
||
|
if ( str == "" ) return true;
|
||
|
var regu = "^[ ]+$";
|
||
|
var re = new RegExp(regu);
|
||
|
return re.test(str);
|
||
|
}
|
||
|
|
||
|
|
||
|
</script>
|
||
|
<body>
|
||
|
<center>
|
||
|
<table width="900" border="0" cellspacing="0" cellpadding="0">
|
||
|
<tr>
|
||
|
<td height="60" bgcolor="#E6F5FF" style="color:#06F; font-size:19px; font-weight:bolder; padding-left:50px;">校园宿舍管理系统</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td height="30" background="Images/MenuBg.jpg"> </td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td height="500" align="center" valign="top"><table width="900" border="0" cellspacing="0" cellpadding="0">
|
||
|
<tr>
|
||
|
<td width="191" height="500" align="center" valign="top" background="Images/leftbg.jpg">
|
||
|
<%@ include file="Left.jsp"%>
|
||
|
</td>
|
||
|
<td width="709" align="center" valign="top" bgcolor="#F6F9FE"><table width="709" border="0" cellspacing="0" cellpadding="0">
|
||
|
<tr>
|
||
|
<td height="30" background="Images/mainMenuBg.jpg" style="padding-left:25px;">学生管理</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td height="470" align="center" valign="top" bgcolor="#F6F9FE">
|
||
|
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||
|
<tr>
|
||
|
<td width="100%" height="30" align="center" style="color:red;">请先选择楼宇</td>
|
||
|
</tr>
|
||
|
<s:iterator id="aa" value="list">
|
||
|
<tr>
|
||
|
<td height="30" align="center">
|
||
|
<a href="MyStudentList.action?Building_ID=${TB_BuildingID}">${Building_Name}</a>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</s:iterator>
|
||
|
</table>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table></td>
|
||
|
</tr>
|
||
|
</table></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td height="35" background="Images/bootBg.jpg"> </td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
|
||
|
</center>
|
||
|
</body>
|
||
|
</html>
|