📄 kh_add2.asp
字号:
<!--#include file="islogin.asp"-->
<!--#include file="conn.asp"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../css/css.css" rel="stylesheet" type="text/css">
<title></title>
<style type="text/css">
<!--
@import url("../style/admin.css");
.STYLE1 { font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
color: #FF0000;
}
-->
</style></head>
<body>
<form name="form1" method="post" action="KH_add3.asp">
<table width="800" border="0" cellpadding="0" cellspacing="0" class="table_1">
<tr>
<td height="25" class="table_1_top"><strong>添加客户 </strong></td>
</tr>
<tr>
<td bgcolor="#FFFFFF"><table width="100%" border="0" align="center" cellpadding="3" cellspacing="0" class="table_1_inc">
<tr>
<td width="88" align="right"><strong>公司名称:</strong></td>
<td><input name="Company" type="text" id="Company" value="<%=request("Company")%>" size="55">
<input type="submit" name="Submit" value="下一步"></td>
</tr>
</table></td>
</tr>
</table>
</form>
<table width="800" border="0" cellpadding="0" cellspacing="0" class="table_1">
<tr>
<td height="25" class="table_1_top"><strong>跟该该公司有以下人员</strong></td>
</tr>
<tr>
<td bgcolor="#FFFFFF">
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="table_1_inc">
<%
Company=trim(request("Company"))
set rs=server.createobject("adodb.recordset")
sql="select top 20 * from KH where Company like '%"&Company&"%' order by id desc"
rs.open sql,conn,1,1
%>
<% do while not rs.eof %>
<tr>
<td width="100" height="23" align="center"><%=rs("Member")%></td>
<td><a href="KHList.asp?id=<%=rs("id")%>" onClick="window.open(this.href,'','left=10,top=10,width=800,height=600,scrollbars=yes,resizable=yes');return false;"><%=rs("Company")%></a></td>
<td width="180" align="center"><%=rs("addtime")%></td>
</tr>
<%
rs.movenext
loop
%>
</table></td>
</tr>
</table>
</body>
</html>
<!--#include file="MenuRight.asp"-->
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -