📄 manageruserdel.asp
字号:
<!--#include file="conn.inc"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>用户删除</title>
<style type="text/css">
<!--
.style1 {
font-size: xx-large;
color: #FF0000;
}
.style2 {
font-size: 18px;
color: #FF0000;
}
.style3 {font-size: 18px}
-->
</style>
</head>
<body>
<%
vuserid=request("v_userid")
now_userid=request.Cookies("userid")
if now_userid=vuserid then
%>
<center>
<table cellspacing="0" style="border-collapse: collapse" bordercolor="#336699" width="480" id="AutoNumber2" cellpadding="0" border="1">
<tr>
<td width="100%" height="25" bgcolor="#6699CC"><b> <font color="#FFFFFF">操作失败</font></b></td>
</tr>
<tr>
<td width="100%" height="160" bgcolor="#EFEFEF">
<p align="center" class="style2">对不起,您正在删除当前用户信息,操作被拒绝!</p>
<p align="center" class="style1"><span class="style3">按下返回按钮返回人员查询页面</span>!</p></td>
</tr>
<tr>
<td width="100%" height="25" bgcolor="#6699CC">
<p align="center">
<input type="button" value=" 返 回 " name="B3" class="s02" onclick="window.location='manageruserselect.asp'"></td>
</tr>
</table>
</center>
<%
else
sql="select * from user_info where UserID="&vuserid&""
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,3,2
rs.delete
rs.update
rs.close
%>
<center>
<table cellspacing="0" style="border-collapse: collapse" bordercolor="#336699" width="480" id="AutoNumber2" cellpadding="0" border="1">
<tr>
<td width="100%" height="25" bgcolor="#6699CC"><b> <font color="#FFFFFF">操作成功</font></b></td>
</tr>
<tr>
<td width="100%" height="160" bgcolor="#EFEFEF">
<p align="center" class="style2">祝贺您,您已经删除所选用户信息,操作成功!</p>
<p align="center" class="style1"><span class="style3">按下返回按钮返回人员查询页面</span>!</p></td>
</tr>
<tr>
<td width="100%" height="25" bgcolor="#6699CC">
<p align="center">
<input type="button" value=" 返 回 " name="B3" class="s02" onclick="window.location='manageruserselect.asp'"></td>
</tr>
</table>
</center>
<%
end if
%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -