| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 797 人关注过本帖
标题:一个表单搜索问题
只看楼主 加入收藏
冰镇柠檬汁儿
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:北京
等 级:版主
威 望:120
帖 子:8078
专家分:6657
注 册:2005-11-7
收藏
得分:0 
判断下拉列表里的值,是什么值,就用那个值对应的sql语句,你不是像大家帮你把代码写了吧

本来无一物,何处惹尘埃
It is empty at all here, Why pm 2.5 is so TMD high!
2006-03-30 13:31
在编程中沦落
Rank: 2
等 级:新手上路
威 望:4
帖 子:411
专家分:0
注 册:2005-12-25
收藏
得分:0 

多谢楼上提醒,一下子傻了,都不知道干吗了,谢谢!


2006-03-30 13:46
在编程中沦落
Rank: 2
等 级:新手上路
威 望:4
帖 子:411
专家分:0
注 册:2005-12-25
收藏
得分:0 

不过还是有点问题,麻烦楼上兄弟帮个忙,我按照要求写的程序:
搜索页:
<table width="362" height="31" border="0" cellpadding="0" cellspacing="1">
<form action="zhao.asp" method="get" name="form1" id="form1">
<tr>
<td width="359">搜索
<select name="sea" id="sea">
<option value="Gnum">用户编号</option>
<option value="Gname">用户名称</option>
</select>
<input name="Keyword" type="text" id="Keyword" />
<input type="submit" name="Submit" value="提交" /></td>
</tr>
</form>
</table>

参数传递页面:zhao.asp

<!--#include file="Connections/Conn.asp" -->
<%
Dim Recordset1__Keyword
Recordset1__Keyword = "%"
If (Request("Keyword") <> "") Then
Recordset1__Keyword = Request("Keyword")
End If
%>
<%
Dim Recordset1
Dim Recordset1_numRows
dim sea

sea =request("sea")
Select Case sea
Case "Gnum"
Set Recordset1 = Server.CreateObject("ADODB.Recordset")
Recordset1.ActiveConnection = MM_Conn_STRING
Recordset1.Source = "SELECT * FROM admin where Gnum like '%" + Replace(Recordset1__Keyword, "'", "''") + "%' ORDER BY Gnum DESC"
Recordset1.CursorType = 0
Recordset1.CursorLocation = 2
Recordset1.LockType = 1
Recordset1.Open()
Recordset1_numRows = 0

Case "Gname"
Set Recordset1 = Server.CreateObject("ADODB.Recordset")
Recordset1.ActiveConnection = MM_Conn_STRING
Recordset1.Source = "SELECT * FROM admin where Gnum like '%" + Replace(Recordset1__Keyword, "'", "''") + "%' ORDER BY Gnum DESC"
Recordset1.CursorType = 0
Recordset1.CursorLocation = 2
Recordset1.LockType = 1
Recordset1.Open()
Recordset1_numRows = 0

end select
%>
可是提交的时候为什么总会出现乱七八糟的错误,要么就是缺少对象,要么就是记录集为真假问题,请帮忙看一下我的参数传递是否正确!

谢谢


2006-04-03 11:31
google
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:22
帖 子:3419
专家分:23
注 册:2005-11-1
收藏
得分:0 
最简单的办法,把提交按纽的NAME做成不同的,然后在后台判断
if request.form("userid")="搜索" then
sql=按照ID进行搜索
end if
if request.form("username")="搜索" then
sql=按照name进行搜索
end if
...............................




祝天下所有母亲幸福安康!~
2006-04-03 12:45
在编程中沦落
Rank: 2
等 级:新手上路
威 望:4
帖 子:411
专家分:0
注 册:2005-12-25
收藏
得分:0 
谢谢google,不过我已经解决了,就用上面的没有问题了!

2006-04-03 13:08
快速回复:一个表单搜索问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.049762 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved