📄 userscore_del.asp
字号:
<!--#include file="../inc/conn.asp"-->
<%
if session("chat_admin")<>"yes" then
response.redirect "login.asp"
response.end
end if
reg_err=""
userid=request("userid")
gameid=request("gameid")
if userid="" or gameid="" then
reg_err="没有指定要删除的用户ID和所属游戏!"
else
sql="delete from "&gameid&"_score where " & userid
Conn = DBCN()
set rs = Server.CreateObject("ADODB.Recordset")
'response.write sql
rs.open sql,conn,3
end if
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>用户管理(删除用户游戏积分)</title>
<style type="text/css">
<!--
.p9 {font-size: 10pt; line-height: 14pt }
-->
</style>
</head>
<body topmargin="3" leftmargin="3">
<table border="0" width="100%" bgcolor="#C8C9D2">
<tr>
<td width="52%"><strong>JChat注册用户管理面板</strong></td>
<td width="48%">
<p align="right" class="p9"><a href="logout.asp"><font color=red>退出系统</font></a> <a href="http://www.easyfad.com">技术支持</a> <a href="http://www.jchat.com.cn">关于JChat</a></td>
</tr>
</table>
<table border="0" width="100%" height="85%" bgcolor="#E7E7EB">
<tr>
<td width="100%" class="p9" valign="top"><br>
<%
if reg_err="" then
response.write "<p>删除注册用户游戏积分成功。<a href=""" & request("myurl") & """>返回</a></p>"
else
response.write reg_err & "<a href=""#"" onclick=""history.back(0);return false;"">返回</a>"
end if
%>
</td>
</tr>
</table>
<table border="0" width="100%" bgcolor="#C8C9D2">
<tr>
<td width="100%" class="p9">
<p align="right">版本:<font color="#FF0000">JGame V2.0.2</font> </p>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -