wantuserout.asp
资源名称:qnmov30.rar [点击查看]
上传用户:qyswxdl
上传日期:2013-06-01
资源大小:1373k
文件大小:1k
源码类别:
家庭/个人应用
开发平台:
ASP/ASPX
- <!--#include file="articleconn.asp"-->
- <!--#include file="../checkpost.asp"-->
- <!--#include file="security.asp"-->
- <%if session("flag")>3 then
- response.write "<br><p align=center>您的操作权限不够!</p>"
- response.end
- end if
- %>
- <%
- userid=Replace(request("userid"), "'", "''")
- if request("want")="out" then
- conn.Execute("Delete * From online") '删除所有的在线用户
- response.redirect Request.ServerVariables("HTTP_REFERER")
- else
- conn.Execute("Delete From online where username='"&userid&"'") '删除指定的在线用户
- response.redirect Request.ServerVariables("HTTP_REFERER")
- end if
- %>