📄 unsubscribeml.asp
字号:
<%@ LANGUAGE = VBScript %>
<!--#include file="conn.asp"-->
<!--#include file="checklogin.asp"-->
<%
rs.Open "Select * From unsubscribe order by ID DESC",Conn
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link REL="StyleSheet" HREF="../tjscripts.css" TYPE="text/css" MEDIA="screen">
<title><%= SiteTitle %>后台管理系统</title>
</head>
<body topmargin="0" leftmargin="0">
<div align="center">
<table border="1" cellspacing="1" width="760" bordercolor="#0033CC">
<tr>
<td width="100%" height="31" bgcolor="#FFCC00"><b>删除会员列表</b></td>
</tr>
<tr>
<td width="100%">
<div align="center">
<table border="1" cellspacing="1" width="100%" bordercolor="#A50F18">
<tr>
<td width="10%" height="30" align="center">编号</td>
<td width="18%" height="30" align="center">用户名</td>
<td width="18%" height="30" align="center">电子邮件地址</td>
<td width="18%" height="30" align="center">删除人</td>
<td width="18%" height="30" align="center">删除时间</td>
<td width="18%" height="30" align="center">删除<span lang="en-us"> I</span>P</td>
</tr>
<%
While Not rs.EOF
ID = rs ("ID")
UserName = rs ("UserName")
Email = rs ("Email")
UnsubscribeBy = rs ("UnsubscribeBy")
UnsubscribeTime = rs ("UnsubscribeTime")
UnsubscribeIP = rs ("UnsubscribeIP")
%>
<tr>
<td width="10%" height="30" align="center"><%= ID %></td>
<td width="18%" height="30" align="center"><%= UserName %></td>
<td width="18%" height="30" align="center"><%= Email %></td>
<td width="18%" height="30" align="center"><%= UnsubscribeBy %></td>
<td width="18%" height="30" align="center"><%= UnsubscribeTime %></td>
<td width="18%" height="30" align="center"><%= UnsubscribeIP %></td>
</tr>
<%
rs.MoveNext
Wend
rs.Close
Set rs = nothing
Conn.Close
Set Conn = nothing
%>
</table>
</div>
</td>
</tr>
<tr>
<td width="100%" align="center"><a href="javascript:history.back();"><b>返回</b></a></td>
</tr>
</table>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -