📄 showuserlogin.asp
字号:
<table border="0" cellspacing="0" cellpadding="0" width="100%" align="center" bgcolor="<%=LeftBColor%>">
<%=TTitle("left","会员资料")%>
<tr>
<td bgcolor="<%=LeftCColor%>" background="<%=LeftCImg%>">
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<%
if session("xpUser")<>"" then
sql="SELECT UserPoint,UserLevel,logins,ReadNews,WGBooks,replay,LoginIP FROM Users where UserName='"&session("xpUser")&"'"
rs.open sql,conn,1,1
if (rs.eof and rs.bof) or err.number<>0 then
%>
<tr>
<td width=100% align=center>请<a href="UserLogout.asp">退出</a>,并重新登陆!</td>
</tr>
<% else%>
<tr>
<td width=60% colspan=2> 用户:<%=session("xpUser")%></td>
</tr>
<td> 积分:<%=rs(0)%></td>
<td>等级:<%=Level(rs(1))%></td>
</tr>
<tr>
<td> 访问:<%=rs(2)%></td>
<td>阅读:<%=rs(3)%></td>
</tr>
<tr>
<td> 评论:<%=rs(4)%></td>
<td>回复:<%=rs(5)%></td>
</tr>
<tr>
<td colspan="2"> 你的IP:<%=rs(6)%> </td>
</tr>
<tr>
<td width=100% height=35 colspan=2 align=center class=leftcontent> <a href="UserModify.asp" target="_self">修改</a> <a href="UserLogout.asp" target="_self">退出</a>
</td>
</tr>
<%
rs.close
end if
else
%>
<form name="userlogin" action="UserChkLogin.asp">
<tr>
<td height="29" colspan="2" align=center>名 称:
<input class="textb" name="UserName" size=10 onfocus=this.select() onmouseover=this.focus()>
</td>
</tr>
<tr>
<td colspan="2" align=center>密 码:
<input class="textb" type=password name="password" size=10 onfocus=this.select() onmouseover=this.focus()>
</td>
</tr>
<tr>
<td width=100% height=35 colspan=2 align=center>
<input class="submit" type=button name="reg" value="注册" onclick="javascript:window.open('UserReg.asp','_self','')">
<input class="submit" type=submit name="submit" value="登陆">
<input class="submit" type=reset name="reset" value="取消">
</td>
</tr>
</form>
<%end if%>
</table>
</td>
</tr>
<%=InTable("bottoml")%>
</table>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -