📄 userlist.asp
字号:
<% server.scripttimeout = 90 %>
<!-- #include file = "setup.asp" -->
<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>留言板用户列表 - <% =pagetitle%></title>
<style type="text/css">
<!--
a { text-decoration: none }
a:link { text-decoration: none; color: blue }
a:visited { text-decoration: none; color: blue }
a:active { text-decoration: underline; color: #FF0000 }
a:hover { color: #FF0000; text-decoration: underline }
body { font-family: 宋体; font-size: 9pt }
td { font-family: 宋体; font-size: 9pt }
--></style>
<script language="JavaScript">
function deluser(name)
{
if (confirm("是否确定删除当前用户和这个用户的全部留言信息?"))
{
var attribution;
attribution = "toolbar = no,menubar=no,scrollbars=yes,status=no,location=no,resizable = yes,directories=no,width=400,height=150";
window.open("admin_tools_del_user_check.asp?name=" + name,"deluser" + name,attribution);
}
}
function delinfo(name)
{
if (confirm("是否确定删除当前用户的其全部留言信息?"))
{
var attribution;
attribution = "toolbar = no,menubar=no,scrollbars=yes,status=no,location=no,resizable = yes,directories=no,width=400,height=150";
window.open("admin_tools_del_check.asp?name=" + name,"delinfo" + name,attribution);
}
}
</script>
</head>
<body>
<!-- #include file = "public_head.asp" -->
<p><%
Set gbook =Server.CreateObject("wzxBook.GuestBook")
gbook.dsntemp = dsntemp
gbook.userlist
Set gbook = Nothing
%></p>
<p><!-- #include file = "public_down.asp" -->
</p>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -