⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 admin.asp

📁 GIS系统初期,目前孩子啊处于测试阶段,好奇的朋友可以看看.
💻 ASP
字号:
<!--#include file="conn.asp"-->
<!--#include file="session.asp"-->
<HTML><HEAD><title>SMS-GIS管理系统</title>
<META http-equiv=Content-Type content="text/html; charset=gb2312">
<style type="text/css">
<!--
body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-color: #EEEEEE;
}
-->
</style>
</head>
<body>
<!--#include file="top.asp"-->
<table width="780" height="0" border="0" cellpadding="0" cellspacing="0" align=center>
  <tr>
    <td align="center" valign="top" bgcolor="#F9F9F9">
    <table width="780" height="37" border="1" cellpadding="0" bgcolor="#EEEEEE" style="border-collapse: collapse" bordercolorlight="#808080">
      <tr align="center">
        <td width="5%" height="30">
		<span style="font-size: 10pt; text-decoration: none">序 号</span></td>
        <td width="14%"><span style="font-size: 10pt; text-decoration: none">来 电 姓 名</span></td>
        <td width="27%"><span style="font-size: 10pt; text-decoration: none">来 电 电 话</span></td>
        <td width="45%"><span style="font-size: 10pt">来 电 信 息</span></td>
        <td width="8%"><span style="font-size: 10pt">选 项</span></td>
      </tr>
<%
set rs=server.CreateObject("adodb.recordset")
sql="select * from person_sms Order by id"

rs.Open sql,conn,1,1
if rs.EOF or rs.BOF then
response.write ("没有记录!")
end if
do while not rs.EOF
%>
      <tr align="center">
        <td width="5%" bgcolor="#FFFFFF" height="35">
		<span style="font-size: 9pt"><%=rs("id")%></span></td>
        <td width="14%" bgcolor="#FFFFFF"><span style="font-size: 9pt"><%=rs("other_name")%></span></td>
        <td width="27%" bgcolor="#FFFFFF"><span style="font-size: 9pt"><%=rs("other_mobile")%></span></td>
        <td width="45%" bgcolor="#FFFFFF"><span style="font-size: 9pt"><%=rs("content")%></span></td>
        <td width="8%" bgcolor="#FFFFFF"><a href="edit.asp?id=<%=rs("id")%>">
		<font color="#FF3300"><span style="font-size: 9pt">编辑</span></font></a><font color="#FF3300"><span style="font-size: 9pt">
		</span>
		<a href="del.asp?id=<%=rs("id")%>"><font color="#FF0000">
		<span style="font-size: 9pt">删除</span></font></a></font></td>
      </tr>
<%rs.movenext
loop
rs.close
set rs = nothing
%>
    </table>
</td>
  </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -