📄 search_user.asp
字号:
<!--#include file="conn.asp" -->
<link href="../style.css" rel="stylesheet" type="text/css"> <table width="100%" border="0" cellspacing="0" cellpadding="3">
<tr>
<td align="center">查询会员</td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> <table width="98%" border="0" cellspacing="0" cellpadding="5" bgcolor="#006600" align="center">
<form name="form2" method="post" action="search_user1.asp?flag=UId" onSubmit="return chechform()">
<tr>
<td width="17%" bgcolor="#FFFFFF" align="right">1.按会员ID查:</td>
<td width="83%" bgcolor="#FFFFFF"> <input type="text" name="searchkey" size="20">
<input type="submit" name="Submit" value="开始查询"> <script language=javascript1.2>
<!--
function chechform()
{
if(form2.searchkey.value==""){form2.searchkey.focus();
alert("请输入你要查找的会员ID!");
return false;
}
}
//-->
</script> </td>
</tr>
</form>
</table></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> <table width="98%" border="0" cellspacing="0" cellpadding="3" bgcolor="#006600" align="center">
<form name="form3" method="post" action="search_user1.asp?flag=Area">
<tr>
<td width="17%" bgcolor="#FFFFFF" align="right">2.组 合 查询:</td>
<td width="83%" bgcolor="#FFFFFF"> </td>
</tr>
<tr>
<td width="17%" bgcolor="#FFFFFF" align="right">省/市:</td>
<td width="83%" bgcolor="#FFFFFF">
<select name=searchcity id="searchcity">
<%
sql_temp="select * from Net008_province"
set rs_temp=server.createobject("adodb.recordset")
rs_temp.open sql_temp,conn,1,2
for i=1 to rs_temp.recordcount
response.write"<OPTION value="&rs_temp("cityid")&">"&rs_temp("cityname")&"</OPTION>"
rs_temp.movenext
next
rs_temp.close
set rs_temp=nothing
%>
</select> </td>
</tr>
<tr>
<td width="17%" bgcolor="#FFFFFF" align="right">姓名:</td>
<td width="83%" bgcolor="#FFFFFF"> <input name="searchxm" type="text" id="searchxm" size="20">
</td>
</tr>
<tr>
<td width="17%" bgcolor="#FFFFFF" align="right">电话/手机:</td>
<td width="83%" bgcolor="#FFFFFF"><input name="searchtel" type="text" id="searchtel" size="20">
<input type="submit" name="Submit2" value="开始查询"></td>
</tr>
<tr>
<td width="17%" bgcolor="#FFFFFF" align="right"> </td>
<td width="83%" bgcolor="#FFFFFF"> </td>
</tr>
</form>
</table></td>
</tr>
</table>
<br>
<br>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -