?? member.asp
字號:
<!--#include file="../Session.asp"-->
<html>
<head>
<title>會員信息</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../../css/site.css" rel="stylesheet" type="text/css">
</head>
<body>
<%
GlevelName=split(GlevelName,"|")
Member=Request("Member")
Set rs1 = Server.CreateObject("ADODB.Recordset")
sql="select * from Member where Member='"&Member&"'"
rs1.open sql,conn,0,1
%>
<table width="100%" border="0" align="center" cellpadding="1" cellspacing="0">
<tr align="center">
<td height="50" colspan="2" class="tdstyle"><font color="#000000" size="3"><strong>會員信息</strong></font></td>
</tr>
<tr>
<td width="30%" height="20" align="right" class="tdstyle">會員名稱:</td>
<td width="70%" class="tdstyle"> <%=Member%> <font color="#999999">[注冊時IP:<%=rs1("ip")%>]</font></td>
</tr>
<tr>
<td height="20" align="right" class="tdstyle">會員級別:</td>
<td class="tdstyle"> <%=GlevelName(int(rs1("Grade")))%>
</td>
</tr>
<tr>
<td height="20" align="right" class="tdstyle">真實姓名:</td>
<td class="tdstyle"> <%=rs1("name")%></td>
</tr>
<tr>
<td height="20" align="right" class="tdstyle">聯(lián)系地址:</td>
<td class="tdstyle"> <%=rs1("Address")%></td>
</tr>
<tr>
<td height="20" align="right" class="tdstyle">郵政編碼:</td>
<td class="tdstyle"> <%=rs1("Postalcode")%></td>
</tr>
<tr>
<td height="20" align="right" class="tdstyle">聯(lián)系電話:</td>
<td class="tdstyle"> <%=rs1("tel")%></td>
</tr>
<tr>
<td height="20" align="right" class="tdstyle">電子信箱:</td>
<td class="tdstyle"> <a href="mailto:<%=rs1("mail")%>?subject=購物確認"><%=rs1("mail")%></a></td>
</tr>
<tr>
<td height="20" align="right" class="tdstyle">注冊日期:</td>
<td class="tdstyle"> <%=rs1("Date")%></td>
</tr>
<tr>
<td height="20" align="right" class="tdstyle">待付總額:</td>
<td class="tdstyle"> <font color="#FF3300"><%=rs1("Money")%></font> 元</td>
</tr>
<tr>
<td height="20" align="right" class="tdstyle">購物總額:</td>
<td class="tdstyle"> <font color="#FF3300"><%=rs1("MoneySum")%></font> 元</td>
</tr>
<tr>
<td height="30" colspan="2" align="center" class="tdstyle">
<input name="button2" type="button" class="button" id="button2" onclick="javascript:window.history.go(-1)" value="返回上頁">
</td>
</tr>
</table>
<%rs1.close
set rs1 = nothing
%>
</body>
</html>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -