⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 member.asp

📁 亿众购物系统 一套设计完善、高效的web商城解决方案
💻 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">&nbsp;<%=Member%> <font color="#999999">[注册时IP:<%=rs1("ip")%>]</font></td>
    </tr>
    <tr> 
      <td height="20" align="right" class="tdstyle">会员级别:</td>
      <td class="tdstyle">&nbsp;<%=GlevelName(int(rs1("Grade")))%>
		</td>
    </tr>
    <tr> 
      <td height="20" align="right" class="tdstyle">真实姓名:</td>
      <td class="tdstyle">&nbsp;<%=rs1("name")%></td>
    </tr>
    <tr> 
      <td height="20" align="right" class="tdstyle">联系地址:</td>
      <td class="tdstyle">&nbsp;<%=rs1("Address")%></td>
    </tr>
    <tr> 
      <td height="20" align="right" class="tdstyle">邮政编码:</td>
      <td class="tdstyle">&nbsp;<%=rs1("Postalcode")%></td>
    </tr>
    <tr> 
      <td height="20" align="right" class="tdstyle">联系电话:</td>
      <td class="tdstyle">&nbsp;<%=rs1("tel")%></td>
    </tr>
    <tr> 
      <td height="20" align="right" class="tdstyle">电子信箱:</td>
      <td class="tdstyle">&nbsp;<a href="mailto:<%=rs1("mail")%>?subject=购物确认"><%=rs1("mail")%></a></td>
    </tr>
    <tr> 
      <td height="20" align="right"  class="tdstyle">注册日期:</td>
      <td class="tdstyle">&nbsp;<%=rs1("Date")%></td>
    </tr>
    <tr> 
      <td height="20" align="right" class="tdstyle">待付总额:</td>
      <td class="tdstyle">&nbsp;<font color="#FF3300"><%=rs1("Money")%></font> 元</td>
    </tr>
    <tr> 
      <td height="20" align="right" class="tdstyle">购物总额:</td>
      <td class="tdstyle">&nbsp;<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>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -