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

📄 comlist.asp

📁 一个功能很全面占用空间的小商城程序,适合个人网上开店使用
💻 ASP
字号:
<%
if session("admin_name")="" then response.end
%>
<!--#include file="conn.asp"-->
<%
dim rs,sql
set rs=server.createobject("adodb.recordset")
	sql="select * from member where user_company='"&Request("user_company")&"'"
                rs.open sql,conn,1,1
                if rs.eof then
                response.write "由于一定的原因,目前数据库中不存在此用户"
                response.End
                else
%>
<html>
<head>
<title>会员管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href=css.css rel=STYLESHEET type=text/css>
</head>
<body bgcolor="#9CC7EF" text="#000000"><br>
<%if not (rs.eof or err) then %>
  <table width="98%" border="1" bordercolordark=#9CC7EF bordercolorlight=#145AA0 cellspacing="0" cellpadding="4" align="center">
  <tbody> 
  <tr> 
    <td colspan=2 height="18" bgcolor="#4296E7"> 
      <p align="center"><font color="#ffffff">查看商店详细信息</font></p>
    </td>
  </tr>
    <tr> 
      <td width=84 align="right" height="25" nowrap> 
        <div align="right">商店负责人:</div>
      </td>
      <td width="361" height="25"><%=rs("user_name")%>
      </td>
  </tr>  
  <tr> 
    <td width=84 align="right" height="25" nowrap> 
      <div align="right">真实姓名:</div>
    </td>
    <td width="361" height="25"><%=rs("user_namec")%>
      </td>
    </tr>
  <tr> 
    <td width=84 align="right" height="26" nowrap> 
      <div align="right">电子邮件:</div>
    </td>
    <td width="361" height="26"><%=rs("user_mail")%>
    </td>
  </tr>
  <tr> 
    <td width=84 align="right" height="26" nowrap> 
      <div align="right">电话:</div>
    </td>
    <td width="361" height="26"><%=rs("user_tel")%>
    </td>
  </tr>
  <tr> 
    <td width=84 align="right" height="26" nowrap> 
      <div align="right">地址:</div>
    </td>
    <td width="361" height="26"><%=rs("user_adds")%>
    </td>
  </tr>
  <tr> 
    <td width=84 align="right" height="26" nowrap> 
      <div align="right">邮政编码:</div>
    </td>
    <td width="361" height="26"><%=rs("user_postcode")%>
    </td>
  </tr>
  <tr> 
    <td colspan="2" align="right" height="26" nowrap bgcolor="#4296E7"> 
      <div align="center">
        <input type="button" name="Submit3" value="返回" onClick="window.location='<%=session("adminOldUrl")%>'">
      </div>
    </td>
  </tr>
  </tbody> 
</table>
<%else %>
您查询的商店资料不存在,请<a href="Javascript:window.history.go(-1)">返回</a>
</body>
</html>
<%end if %>
<%end if%>

⌨️ 快捷键说明

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