📄 usershow.asp
字号:
<!--#include file="check_login.asp"-->
<!--#include file="conn.asp"-->
<%
idd=trim(request.QueryString("id"))
Set rs=Server.CreateObject("Adodb.Recordset")
sql="select * from UserInfo where id="&idd&""
rs.open sql,conn,1,3
if rs.eof then
response.write "该信息发生异常错误,请退出"
end if
yesStr=rs("Utemp")
if yesStr=True then
yesStr="是"
else
yesStr="否"
end if
Set RsUG=Server.CreateObject("Adodb.Recordset")
SqlUG="select * from Nweb_UGroup where GroupID='"&rs("GroupID")&"'"
RsUG.open SqlUG,conn,1,1
GroupName=RsUG("GroupName")
RsUG.close
set StrUG = nothing
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="text.css" rel="stylesheet" type="text/css">
<title></title>
</head>
<body topmargin="0" <%=kkk%>>
<table width="96%" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#EFEBEF">
<tr align="center" bgcolor="#B9BBB9">
<td height="30" colspan="2" ><strong>会 员 资 料</strong></td>
</tr>
<tr>
<td width="24%" align="right" bgcolor="#DEDFDE" style='BORDER-TOP: #333333 1px solid'>登录名:</td>
<td width="76%" bgcolor="#EBEBEB" style='BORDER-TOP: #333333 1px solid'> <%=rs("Uname")%></td>
</tr>
<tr>
<td align="right" bgcolor="#DEDFDE">姓名:</td>
<td bgcolor="#EBEBEB"> <%=rs("Uname1")%> </td>
</tr>
<tr>
<td align="right" bgcolor="#DEDFDE">性别:</td>
<td bgcolor="#EBEBEB"> <%=rs("Sex")%> </td>
</tr>
<tr>
<td align="right" bgcolor="#DEDFDE">所属会员组别:</td>
<td bgcolor="#EBEBEB"> <%=GroupName%>
</td>
</tr>
<tr>
<td align="right" bgcolor="#DEDFDE">密码保护提示问题:</td>
<td bgcolor="#EBEBEB"> <%=rs("UpassS1")%> </td>
</tr>
<tr>
<td width="24%" align="right" bgcolor="#DEDFDE">注册日期:</td>
<td bgcolor="#EBEBEB"> <%=rs("Udate")%></td>
</tr>
<tr>
<td width="24%" align="right" bgcolor="#DEDFDE">单位名称:</td>
<td bgcolor="#EBEBEB"> <%=rs("Ucom")%> </td>
</tr>
<tr>
<td width="24%" align="right" bgcolor="#DEDFDE">地址:</td>
<td bgcolor="#EBEBEB"> <%=rs("Uadd")%> </td>
</tr>
<tr>
<td width="24%" align="right" bgcolor="#DEDFDE">电话:</td>
<td bgcolor="#EBEBEB"> <%=rs("Utel")%> </td>
</tr>
<tr>
<td align="right" bgcolor="#DEDFDE">手机:</td>
<td bgcolor="#EBEBEB"> <%=rs("Umtel")%> </td>
</tr>
<tr>
<td align="right" bgcolor="#DEDFDE">传真:</td>
<td bgcolor="#EBEBEB"> <%=rs("Ufax")%></td>
</tr>
<tr>
<td align="right" bgcolor="#DEDFDE">邮编:</td>
<td bgcolor="#EBEBEB"> <%=rs("Ucode")%> </td>
</tr>
<tr>
<td align="right" bgcolor="#DEDFDE">电子邮件:</td>
<td bgcolor="#EBEBEB"> <%=rs("Uemail")%></td>
</tr>
<tr>
<td width="24%" align="right" bgcolor="#DEDFDE">通过验证:</td>
<td bgcolor="#EBEBEB"> <%=yesStr%></td>
</tr>
<tr align="center" bgcolor="#DEDFDE">
<td height="50" colspan="2" style='BORDER-BOTTOM: #333333 1px solid'>
<input type="button" value=" 打印 " onclick="javascript:window.print();">
<input type="button" value="关闭窗口" onclick="javascript:window.close();"> </td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -