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

📄 a.asp

📁 一个简单的客户管理系统
💻 ASP
字号:


<!--#include file="conn.asp"-->

<title>库存</title>
<style type="text/css">
<!--
.STYLE2 {font-size: 18px}
.STYLE3 {
	font-size: 18px;
	font-weight: bold;
	color: #FFFFFF;
}
a:link {
	color: #003366;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #003366;
}
a:hover {
	text-decoration: none;
	color: #003366;
}
a:active {
	text-decoration: none;
	color: #003366;
}
body {
	background-color: #ECF2FF;
	margin-left: 0px;
	margin-right: 0px;
}
.STYLE5 {
	font-size: 12px;
	color: #000055;
}
.STYLE12 {font-size: 12px}
.STYLE13 {font-size: 14px; }
.STYLE14 {font-size: 16px}
-->
</style>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<BODY leftmargin="10" topmargin="0">
<p align="center" class="STYLE2">

<table width="100%" height="35" border="0"  background="image/top.gif" align="center" cellpadding="0" cellspacing="0">
  <tr> 
    <td><div align="center"><span class="STYLE3">客户列表</span></div></td>
  </tr>
</table>



<%
           exec="select * from company order by id"  
           set rs=server.createobject("adodb.recordset")
           rs.open exec,conn,1,3
		   
		  
  
         for i=1 to 220
		  
		  s=rs("id")
		  exe="select * from follow where company_id='"&s&"' order by date desc"  
          set ss=server.createobject("adodb.recordset")
          ss.open exe,conn,1,1
		  
		  if not ss.eof then
		  rs("last_date")=ss("date")
		  rs.update
		  end if
		  
		  ss.close
		  
		  
		  
		  
		  rs.movenext
		 
		  next
		  
		  
		  
		   %>
		   
		   
		   	        <table width="100%" height="18" border="0"  background="image/bottom.gif" align="center" cellpadding="0" cellspacing="0">
    <tr>
      <td valign="bottom"><div align="center"><span class="STYLE5">版权所有  杰尔康</span><br />
      </div></td>
    </tr>
  </table>
</BODY>

⌨️ 快捷键说明

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