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

📄 look.asp

📁 手机入网登记管理
💻 ASP
字号:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>25175客户管理系统v1.0</title>
<style type="text/css">
<!--
@import url("20041026_25175_stry_css.css");
-->
</style>
</head>
<body>

<table width="100%" height="25" align="center" cellpadding="0" cellspacing="0" class="unnamed_rld2">
  <tr bgcolor="#EEEEEE">
    
    <td width="100" align="center"><a href="student_res1.asp">按公司电话查询</a></td>
    <td width="100" align="center"><a href="student_res2.asp">按公司名称查询</a></td>
    <td width="100" align="center" bgcolor="#EEEEEE"><a href="student_res3.asp">按公司姓名查询</a></td>
    <td width="100" align="center"><a href="student_res4.asp">按联系人手机查询</a></td>
    <td width="100" align="center"><a href="student_res5.asp">按公司地址查询</a></td>
    <td width="100" align="center"><a href="student_res6.asp">按公司态度查询</a></td>
    <td width="100" align="center"><a href="student_res7.asp">按公司现状查询</a></td>
  </tr>
</table>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
          <TD height="25"> 

<%
xh=request("xh")
set rs=server.createobject("adodb.recordset")
conn = "DBQ=" + server.mappath("class_cj.mdb") + ";DefaultDir=;DRIVER={Microsoft Access Driver (*.mdb)};"
if request("xh")<>"" then
	sql="select * from bbs1 where xh like'" & xh & "'"
else
	sql="select top 1 * from bbs1"
end if
rs.Open sql,conn,1,1
totalput=rs.RecordCount
if rs.EOF and  rs.BOF then
	Response.Write "当前没有这个公司电话的公司地址~~~~~~~~~~"
else
%> 
         </TD>
        </tr>
        <tr>
          <TD height="25" colspan="6">公司名称:<%=rs("bj")%></TD>
        </tr>
        <tr> 
          <TD width="87" height="25">公司电话</TD>
          <td width="83" height="25">公司姓名</td>
          <td width="83" height="25">联系人手机</td>
          <td width="79" height="25">公司地址</td>
          <td width="90" height="25">公司态度</td>
          <td width="72" height="25">公司现状</td>
        </tr>
        <%
	do while not rs.eof
%>
        <tr> 
          <td width="87" height="25"><%=rs("xh")%></td>
          <td width="83" height="25"><%=rs("user")%></td>
          <td width="83" height="25"><%=rs("kc")%></td>
          <td width="79" height="25"><%=rs("cj")%></td>
          <td width="90" height="25"><%=rs("xq")%></td>
          <td width="72" height="25"><%=rs("lx")%></td>
        </tr>
        <%
	rs.movenext
	loop
end if
rs.Close 
set rs=nothing
set conn=nothing
%>
</table>
            
            
            
</body>
</html>

⌨️ 快捷键说明

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