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.
92 lines
4.3 KiB
92 lines
4.3 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="30" 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="#F0FFF0"><table width="1005" 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="BuildingManager.action">
|
|
<table width="100%%" border="0" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td width="28%" height="30" style="padding-left:20px;"> 功能导航: <a href="BuildingAdd.jsp">添加楼栋</a></td>
|
|
<td width="72%">名称:
|
|
|
|
<select name="SearchRow" id="SearchRow">
|
|
<option value="Building_Name">楼栋名字</option>
|
|
<option value="Building_DomitoryName">楼栋管理员名字</option>
|
|
<option value="Building_DomitoryTel">楼栋管理员电话</option>
|
|
<option value="Building_Address">楼栋地址</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>
|
|
<td bgcolor="#FF7F50"><strong>操作</strong></td>
|
|
</tr>
|
|
<s:iterator id="aa" value="list">
|
|
<tr align="center">
|
|
<td height="25" align="center">${Building_ID}</td>
|
|
<td>${Building_Type}</td>
|
|
<td>${Building_Name}</td>
|
|
<td>${Building_DomitoryName}</td>
|
|
<td>${Building_DomitoryTel}</td>
|
|
<td>${Building_Address}</td>
|
|
<td align="center">
|
|
<a href="BuildingUpdate.action?Build_ID=${Build_ID}">修改</a>
|
|
<a href="BuildingDel.action?Build_ID=${Build_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>
|