新微赢技术网

标题: 又来求助地。。赐教 [打印本页]

作者: 夜神君    时间: 2010-1-14 02:28
标题: 又来求助地。。赐教
大家看我写的判断搜索的代码:实现的功能是判断搜索类型,并接受从表单传来的内容,进行搜索。
if request("stype")=singer then
sql="select * from nclass where nclass like '%"&request("keyword")&"%' order by nclassid desc"
elseif request("stype")=music then
sql="select * from musiclist where musicname like '%"&request("keyword")&"%' "
end if
set rs=server.CreateObject("adodb.recordset")
rs.open sql,conn,1,1 /9行

if not isempty(request.QueryString("page")) then
currentpage=cint(request.QueryString("page"))
else
currentpage=1
end if

if rs.eof and rs.bof then
if request("stype")=singer then
response.Write"<p align='center'><br><br>Sorry,未找到你想要的歌手<br><br><a href="" javascript:history.go(-1)"">点此返回</a><br><br></p>"
elseif request("stype")=music then
response.Write"<p align='center'><br><br>Sorry,未找到你想要的歌曲<br><br><a href="" javascript:history.go(-1)"">点此返回</a><br><br></p>"
end if
else
totalput=rs.recordcount
maxperpage=10
pageurl="search.asp"
if currentpage<1 then currentpage=1
if(currentpage-1)*maxperpage>totalput then
if (totalput mod maxperpage)=0 then
currentpage= totalput \ maxperpage
else
currentpage= totalput \ maxperpage+1
end if
end if
if currentpage=1 then
showpage totalput,maxperpage,pageurl
showcontent
showpage totalput,maxperpage,pageurl
else
if (currentpage-1)*maxperpage<totalput then
rs.move(currentpage-1)*maxperpage
dim bookmark
bookmark=rs.bookmark
showpage totalput,maxperpage,pageurl
showcontent
showpage totalput,maxperpage,pageurl
else
currentpage=1
showpage totalput,maxperpage,pageurl
showcontent
showpage totalput,maxperpage,pageurl
end if
end if
rs.close
end if
%>

问题是:运行后总是报这样的错--
错误类型:
ADODB.Recordset (0x800A0BB9)
参数类型不正确,或不在可以接受的范围之内,或与其他参数冲突。
/search.asp, 第 9 行

我找了半天都看不出原因何在
望哪位帮帮me
谢了
作者: ︶ぺ雨湮ㄣ    时间: 2010-1-14 02:28
将生成的sql语句输出 看一下
作者: ‖蠻忝謃☆    时间: 2010-1-14 02:28
输出没问题
这段单独运行正常
和主页上面连起来后就报这样的问题
作者: 想念~!    时间: 2010-1-14 02:28
主页传的值stype、keyword,都没写错?都有值?
作者: 我和老公在    时间: 2010-1-14 02:28
有值
我把全部的错误信息发给你看看

技术信息(用于支持人员)
错误类型:
ADODB.Recordset (0x800A0BB9)
参数类型不正确,或不在可以接受的范围之内,或与其他参数冲突。
/search.asp, 第 10 行
浏览器类型:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Poco 0.31; Maxthon; Alexa Toolbar) 网页:
POST 36 ??? /search.asp POST Data:
stype=Music&keyword=&I3.x=24&I3.y=11 时间:
2005年12月27日, 下午 07:33:48 详细信息:
Microsoft 支持
红的那行显示的是有值的




欢迎光临 新微赢技术网 (http://bbs.weiying.cn/) Powered by Discuz! X3.2