📄 bzmtv-8-3.asp
字号:
<!--#include file="bzmtvconst.asp"-->
<%CheckAdmin3%>
<%
id=request.QueryString("id")
act=request("act")
set rs=server.CreateObject("ADODB.RecordSet")
if act="edit" then
username=trim(request.form("username"))
password= md5(Trim(Replace(Request("password"), "'", "")))
Sex=trim(request.form("Sex"))
Email=trim(request.form("Email"))
Tel=trim(request.form("Tel"))
Name=trim(request.form("Name"))
Address=trim(request.form("Address"))
Shenfenzheng=trim(request.form("Shenfenzheng"))
oicq=trim(request.form("oicq"))
vipdate=trim(request.form("vipdate"))
if username="" or password="" or Sex="" then
errmsg="<br>用户名称,密码和性别都不能为空!</li>"
call error()
Response.End
end if
sql="select * from [user] where id="& request("id")
rs.open sql,conn,1,3
if not rs.eof then
rs("Username")=username
rs("Password")=password
rs("Sex")=Sex
if Email="" then
rs("Email")=null
else
rs("Email")=Email
end if
if Tel="" then
rs("Tel")=null
else
rs("Tel")=Tel
end if
if Name="" then
rs("Name")=null
else
rs("Name")=Name
end if
if Address="" then
rs("Address")=null
else
rs("Address")=Address
end if
if Shenfenzheng="" then
rs("Shenfenzheng")=null
else
rs("Shenfenzheng")=Shenfenzheng
end if
if oicq="" then
rs("oicq")=null
else
rs("oicq")=oicq
end if
if vipdate="" or vipdate<=0 then
rs("vipdate")=0
rs("lockuser")=true
else
rs("vipdate")=vipdate
rs("lockuser")=false
end if
rs.update
end if
rs.close
elseif act="lock" then
sql="select * from [user] where id="&id
rs.open sql,conn,1,3
if not rs.eof then
if rs("lockuser")=false then
rs("lockuser")=true
else
rs("lockuser")=false
end if
rs.update
end if
rs.close
elseif act="cz" then
sql="select * from [user] where id="&id
rs.open sql,conn,1,3
if not rs.eof then
vipdate=trim(request.form("vipdate"))
adddate=trim(request.form("adddate"))
rs("adddate")=adddate
if vipdate="" or vipdate<=0 then
rs("vipdate")=0
rs("lockuser")=true
else
rs("vipdate")=vipdate
rs("lockuser")=false
end if
rs.update
end if
rs.close
end if
set rs=nothing
conn.close
set conn=nothing
response.redirect "bzmtv-8.asp"
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -