新手查询问题
数据库中有一表user,其中user_name,time等是其中的字段,现在想按user_name或time查询,但是运行不行,请帮忙看看!谢谢!<!--#include file="conn.asp"-->
<%
If request("action")="查询" Then
set rs=server.createobject("adodb.recordset")
If request("st")="客户名称" Then
sqltext="select * from [user] where user_name="&request("sc") &" order by user_name asc"
ElseIf request("st")="加入日期" Then
sqltext="select * from [user] where time="& request("sc") &" order by user_name asc"
End If
rs.open sqltext,conn,1,1
End If
%>
<HTML>
<HEAD>
<META content="text/html; charset=gb2312" http-equiv=Content-Type>
<title>查询</title>
</HEAD>
<body>
<FORM name=form1 method="post" action="User_look.asp" onSubmit="return false;">
<div align="center">请选择查询条件:
<SELECT size=1 name=st>
<OPTION value=kename selected>客户名称
<OPTION value=khtime>加入日期
</SELECT>
<INPUT type="text" size=15 name=sc>
<INPUT type="submit" value="查询" name="action">
</div>
</FORM>
<br>
<br>
<%
total=0
do while not rs.eof
%>
<table border="1" width="100%" cellspacing="0" cellpadding="0">
<tr height="35">
<td width="8%" height="30" align="center" bgcolor= #66CCFF><b>加入日期</b></td>
<td width="13%" height="30" align="center" bgcolor=#66CCFF><b>客户名称</b></td>
<td width="7%" height="30" align="center" bgcolor=#66CCFF><b>阶段</b></td>
<td width="5%" height="30" align="center" bgcolor=#66CCFF><b>类型</b></td>
<td width="8%" height="30" align="center" bgcolor=#66CCFF><b>客户来源</b></td>
<td width="8%" height="30" align="center" bgcolor=#66CCFF><b>主联系人</b></td>
<td width="10%" height="30" align="center" bgcolor=#66CCFF><b>电话</b></td>
<td width="13%" height="30" align="center" bgcolor=#66CCFF><b>详细地址</b></td>
<td width="13%" height="30" bgcolor=#66CCFF align="center"><b>电子邮件</b></td>
<td width="8%" height="30" align="center" bgcolor=#66CCFF><b>主页</b></td>
</tr>
<tr bordercolor= #FFFFFF>
<td width="8%" height="35" align="center" bgcolor="#F5F5F5"><%=rs("time")%></td>
<td width="13%" height="35" align="center" bgcolor="#F5F5F5"><%=rs("user_name")%></td>
<td width="7%" height="35" align="center" bgcolor="#F5F5F5"><%=rs("stage")%></td>
<td width="5%" height="35" align="center" bgcolor="#F5F5F5"><%=rs("type")%></td>
<td width="8%" height="35" align="center" bgcolor="#F5F5F5"><%=rs("source")%></td>
<td width="8%" height="35" align="center" bgcolor="#F5F5F5"><%=rs("contactor")%></td>
<td width="10%" height="35" align="center" bgcolor="#F5F5F5"><%=rs("telephone")%></td>
<td width="13%" height="35" align="center" bgcolor="#F5F5F5"><%=rs("address")%></td>
<td width="13%" height="35" align="center" bgcolor="#F5F5F5"><%=rs("email")%></td>
<td width="8%" height="35" align="center" bgcolor="#F5F5F5"><%=rs("network")%></td>
</tr>
</table>
<%
rs.movenext()
total=total+1
loop
%>
<% if not rs.eof or rs.bof then %>
<font color="#00CCFF">共<%=(total)%>条客户信息</font>
<% end if %>
</body>
</html>