日期:2014-05-16 浏览次数:21026 次
<!--#include file="conn.asp" -->
<%
str="select * from dbo.xldxx order by xh"
set rs=conn.Execute(str)
%>
<link href="../css/aindex.css" rel="stylesheet" type="text/css" />
<link href="../css/index.css" rel="stylesheet" type="text/css" />
<link href="../css/alink.css" rel="stylesheet" type="text/css" />
<table width="89%" align="left" cellpadding="5" cellspacing="1" bordercolor="#000000" class="bx" border="1">
<tr>
<td colspan="10" bgcolor="#34A6DC" class="bg"><div align="left">校领导基本信息 <a href="addxld.asp">添加记录</a></div></td>
</tr>
<tr>
<td width="3%" class="bg">序号</td>
<td width="6%" class="bg">姓名</td>
<td width="18%" class="bg">职务</td>
</tr>
<% do while not rs.eof %>
<tr bordercolor="#E6F7FB" bgColor=#FFFFFF onMouseOver="javascript:this.bgColor='#E6F7FB';"onMouseOut="javascript:this.bgColor='#FFFFFF';" >
<td bordercolor="#F2F4F4"><%=rs("xh")%></td>
<td bordercolor="#F2F4F4"><%=rs("xm")%></td>
<td bordercolor="#F2F4F4"><%=rs("zw")%></td>
<td bordercolor="#F2F4F4"><a href="modixld.asp?id=<%=rs("xh")%>">修改</a> <a href="delxld.asp?id=<%=rs("xh")%>">删除</a></td>
</tr>
<%
rs.movenext
loop
%>
</table>
<!--#include file="conn.asp" -->
<%
str="delete * from xldxx where xh="&request.QueryString("id")
set rs=conn.Execute(str)
%>
<%
Response.Redirect("xb1-1.asp")
%>
<!--#include file="conn.asp" -->