ASP 的一个传递ID问题

就是想从一个分类表传递几个ID到产品里面,如下面做的说明:<%dimclassiddimmyclassidclassid=replace(trim(request("cl... 就是想从一个分类表传递几个ID到产品里面,如下面做的说明:
<%

dim classid
dim myclassid

classid=replace(trim(request("classid")),"'","")
myclassid=replace(trim(request("myclassid")),"'","")

%>

<%
if myclassid<>"" then
Set rsa= Server.CreateObject("ADODB.Recordset")
sqlstr="select * from Classify where ParentID="&myclassid&""
rsa.open sqlstr,conn,1,1
do while not rsa.eof
Response.Write " "& rsa("id") &"," 这里测试的ID输出是对的如12,13,14
myid=rsa("id") 用myid传到下面
rsa.movenext
loop
end if
%>

<%

if classid<>"" then sqlwhere=sqlwhere &" and classid="&classid&""
if myclassid<>"" then sqlwhere=sqlwhere &" and classid in ("&myid&",)" 传以下面这里就不对了只有一个12

Set rs=Server.CreateObject("ADODB.RecordSet")
strsql="select * from Products where id<>0 "&sqlwhere&" order by id desc"
rs.Open strsql,conn,1,1
if rs.eof then
else
rs.movefirst
if not isempty(request("page")) then
pagecount=cint(request("page"))
else
pagecount=1
end if
rs.pagesize=8
if pagecount>rs.pagecount or pagecount<=0 then
pagecount=1
end if
rs.AbsolutePage=pagecount

%>

<%
do while not(rs.eof or rs.bof)
%>

<%
rs.movenext
loop
%>

<%
rs.close
set rs=nothing
%>
展开
 我来答
loveid
2010-06-30 · TA获得超过358个赞
知道小有建树答主
回答量:447
采纳率:100%
帮助的人:516万
展开全部
第一个办法
最开始处定义myid=""
myid=myid + rsa("id")&","
这个地方循环累加,然后调用
if myclassid<>"" then sqlwhere=sqlwhere &" and classid in ("&myid&",)"

第二个简单
还是调用myclassid变量
if myclassid<>"" then sqlwhere=sqlwhere &" and classid in ("&myclassid&",)"
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式