📄 codeid.asp
字号:
<%
set rs=server.CreateObject("ADODB.RecordSet")
sql="select * from union_user where unionid='"&username&"' order by ID desc"
rs.open sql,conn,1,1
if not rs.eof then
id=rs("id")
isgood=rs("isgood")
if isgood=0 then
good="正常"
else
good="锁定"
end if
end if
rs.close
set rs=server.CreateObject("ADODB.RecordSet")
xxi=0
sql="select * from union_user where tjid='"&username&"' order by ID desc"
rs.open sql,conn,1,1
if not rs.eof then
do while not rs.eof
xxi=xxi+1
xxii=xxii&""&xxi&""
rs.movenext
loop
end if
rs.close
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -