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.
84 lines
4.9 KiB
84 lines
4.9 KiB
<%@ 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>
|
|
<body>
|
|
<center>
|
|
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td height="60" bgcolor="#7BC69" style="color:#000000; font-size:19px; font-weight:bolder; padding-left:50px;"background="Images/bg015.jpg">高校生活,寓你同行</td>
|
|
</tr>
|
|
<tr>
|
|
<td height="25" background="Images/bg005.png"> </td>
|
|
</tr>
|
|
<tr>
|
|
<td height="500" align="center" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td width="191" height="500" align="center" valign="top" background="Images/bg008.jpg">
|
|
<%@ include file="Left.jsp"%>
|
|
</td>
|
|
<td width="100%" align="center" valign="top" bgcolor="#F6F9FE"><table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td height="30" background="Images/bg007.jpg" style="padding-left:25px;">宿舍管理</td>
|
|
</tr>
|
|
<tr>
|
|
<td height="470" align="center" valign="top" bgcolor="#F0FFF0"><form name="form1" method="post" action="DomitoryManager.action">
|
|
<table width="100%%" border="0" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td width="22%" height="30" style="padding-left:20px;"> 功能导航:</td>
|
|
<td width="78%">查询:
|
|
<select name="SearchRow" id="SearchRow">
|
|
<option value="Domitory_StudentName">学生姓名</option>
|
|
<option value="Domitory_Number">寝室号</option>
|
|
<option value="Domitory_StudentTel">电话</option>
|
|
</select>
|
|
<input name="SearchKey" type="text" class="text1" id="SearchKey">
|
|
<input type="submit" name="button" id="button" value="点击查询"></td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
<tr align="center" class="t1">
|
|
<td height="25" bgcolor="#FF7F50"><strong>楼栋号</strong></td>
|
|
<td bgcolor="#FF7F50"><strong>寝室号</strong></td>
|
|
<td bgcolor="#FF7F50"><strong>寝室类型</strong></td>
|
|
<td bgcolor="#FF7F50"><strong>学生姓名</strong></td>
|
|
<td bgcolor="#FF7F50"><strong>电话</strong></td>
|
|
<td bgcolor="#FF7F50"><strong>操作</strong></td>
|
|
</tr>
|
|
<s:iterator id="aa" value="list">
|
|
<tr align="center">
|
|
<td height="25" align="center">${Domitory_BuildingID}</td>
|
|
<td>${Domitory_Number}</td>
|
|
<td>${Domitory_Type}</td>
|
|
<td>${Domitory_StudentName}</td>
|
|
<td align="center">${Domitory_StudentTel}</td>
|
|
<td align="center"><a href="DomitoryUpdate.action?Domitory_ID=${Domitory_ID}">修改</a>
|
|
<a href="DomitoryDel.action?Domitory_ID=${Domitory_ID}" onClick="return confirm('确定要删除该学生寝室信息吗?')">删除</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>
|