<%
Option Explicit
Const admin = "admin"
Const admpass = "admin"
Dim roomname, kicklist, onliuser, chatdata, userdup, userid, noplace, username, I, chatpoin, password, admlevel
Username = trim (request. form ("username "))
Password = request. form ("password ")
Roomname = application ("roomname ")
Kicklist = application ("kicklist ")
Onliuser = application ("onliuser ")
Chatdata = application ("chatdata ")
If username = "system" or username = "all" or username = "" then response. redirect "error. asp? Mess = an invalid character is used as the name or the name reserved by the system. Please enter another one"
If username = admin and password = admpass then
Admlevel = 90
Session ("admlevel") = 9
Username = "*" & username
Else
Admlevel = 0
Session ("admlevel") = ""
If instr (kicklist, "'#" & username & "'")> 0 then response. redirect "kickout.htm"
If instr (kicklist, "'" & Request. ServerVariables ("remote_addr") & "'")> 0 then response. redirect "kickout.htm"
End if
Userdup = false
For I = 0 to 50
If chatdata (I, 0) = username then
If chatdata (I, 1) <> request. servervariables ("remote_addr") then
Response. redirect "error. asp? Mess = the same chat nickname already exists. Please use another nickname to enter"
Else
Userdup = true
Userid = I
Chatdata (I, 4) = admlevel
Exit
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.