📄 weixzt.asp
字号:
<!--#include file="global.asp"-->
<%if session("yonghm")<>"" then%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>住户列表</title>
<link rel="stylesheet" type="text/css" href="Admin_Style.css">
<base target="_self">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" style="background-color: #555555">
<form name="myform" method="POST" action=<%=strFileName%> onsubmit="return ConfirmDel();">
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="1" class="border">
<tr>
<td height="22" colspan="2" align="center" class="title" style="background-image: url('images/topBar_bg.gif')"><strong>任
务 栏</strong></td>
</tr>
<tr class="tdbg">
<td width="70" height="30"><strong>管理导航:</strong></td>
<td height="30">住户 </td>
</tr>
</table>
<% id=request("id")
sql="select * from fangjzt where 序号="&id
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,1,1
%>
<table BORDER=1 cellspacing=0 cellpadding=0 bordercolordark=#FFFFFF width="100%" class=12Font bgcolor="#EAEAEA" >
<tr>
<td width="15%" align="right"><strong>房号:</strong></td>
<td width="35%" colspan="1">
<input type="text" name="Title" size="30" id="Title" value=<%=rs("房号")%>>
</td>
<td width="15%" align="right"><strong>姓名:</strong></td>
<td width="35%" colspan="1">
<input type="text" name="Title0" size="30" id="Title0" value="<%=rs("姓名")%>">
</td>
</tr>
<tr>
<td width="15%" align="right"><strong>电话:</strong></td>
<td width="35%" colspan="1">
<input type="text" name="Title" size="30" id="Title" value="<%=rs("电话")%>">
</td>
<td width="15%" align="right"><strong>是否有老人:</strong></td>
<td width="35%" colspan="1">
<input type="text" name="Title0" size="30" id="Title0" value="<%=rs("是否有老人")%>">
</td>
</tr>
</table>
<%
sql="select * from weixb where 房号='"&rs("房号")&"' "
set rs1=server.createobject("adodb.recordset")
rs1.open sql,conn,1,1
%>
<table width="100%" border="0" align="center" cellpadding="2" cellspacing="1" Class="border">
<tr class="title" >
<td width="80" height="22" align="center" style="background-image: url('images/topBar_bg.gif')" ><strong>报修时间</strong></td>
<td width="180" height="22" align="center" style="background-image: url('images/topBar_bg.gif')"><strong>报修内容</strong></td>
<td width="80" height="22" align="center" style="background-image: url('images/topBar_bg.gif')"><strong>维修人员</strong></td>
<td width="80" height="22" align="center" style="background-image: url('images/topBar_bg.gif')"><strong>完成时间</strong></td>
<td width="80" height="22" align="center" style="background-image: url('images/topBar_bg.gif')"><strong>接待人</strong></td>
<td width="140" height="22" align="center" style="background-image: url('images/topBar_bg.gif')"><strong>备注</strong></td>
</tr>
<%
if not(rs1.bof and rs.eof) then
do while not rs1.eof
%>
<tr class="tdbg" onmouseout="this.style.backgroundColor=''" onmouseover="this.style.backgroundColor='#cccccc'" style="padding: 0px 2px;">
<td><a href="weixzt.asp?ID=<%=rs1("序号")%>" title="55"><%=rs1("报修时间")%></a></td>
<td align="center" >
<%=rs1("报修内容")%> </td>
<td align="center" >
<%=rs1("维修人员")%> </td>
<td align="center"><%=rs1("完成时间")%></td>
<td align="center"><%=rs1("接待人")%></td>
<td align="center"><%=rs1("备注")%></td>
</tr>
<%
rs1.movenext
loop
end if
%>
</table>
</form>
<p class="border">
<% else %>
<P><a href="Admin_Login.asp" target="_top">请登录</a> </p>
<%end if %>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -