📄 p2cdelete.asp
字号:
<%@ LANGUAGE = VBScript %>
<!--#include file="conn.asp"-->
<!--#include file="checklogin.asp"-->
<%
rs.Open "Select * From p2c order by ID",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="99%" bordercolor="#A50F18">
<tr>
<td width="4%" height="30" align="center">编号</td>
<td width="12%" height="30" align="center">名称</td>
<td width="6%" height="30" align="center">分组</td>
<td width="12%" height="30" align="center">类型</td>
<td width="12%" height="30" align="center">价值</td>
<td width="12%" height="30" align="center">所有者</td>
<td width="12%" height="30" align="center">有效性</td>
<td width="12%" height="30" align="center">删除</td>
</tr>
<%
While Not rs.EOF
P2CID = rs ("ID")
P2CName = rs ("P2CName")
P2CGroup = rs ("P2CGroup")
P2CType = rs ("P2CType")
P2CValuation = rs ("P2CValuation")
P2COwner = rs ("P2COwner")
P2CValid = rs ("P2CValid")
%>
<form method="POST" action="p2cdelete_do.asp">
<tr><td width="100%" colspan="9"><input type="hidden" name="P2CID" value="<%= P2CID %>"></td></tr>
<tr>
<td width="4%" height="30" align="center"><%= P2CID %></td>
<td width="12%" height="30" align="center"><%= Right (P2CName, Len (P2CName) - 4) %></td>
<td width="12%" height="30" align="center"><%= P2CGroup %></td>
<td width="12%" height="30" align="center"><%= P2CType %></td>
<td width="12%" height="30" align="center"><%= P2CValuation %></td>
<td width="12%" height="30" align="center"><%= P2COwner %></td>
<td width="12%" height="30" align="center"><%= P2CValid %></td>
<td width="12%" height="30" align="center">
<input type="submit" value="删除" name="Button"></td>
</tr>
</form>
<%
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 + -