设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 124|回复: 12
打印 上一主题 下一主题

[开源][讨论][求助]asp语句有一部分总是跳过

[复制链接]
跳转到指定楼层
1#
发表于 2010-1-8 07:38:09 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
下面这段代码为什么总不执行跳转到 <a href="searchResult.asp?keywords=<%=rb("corpuser_info.username")%>"> <%=rb("corpuser_info.username")%></a> 这上一句请问如何改或
<table width="962" border="0" align="center" cellpadding="0" cellspacing="0" class="CONTENT" bgcolor="#FFFFFF">

<td width="960"></tr>
<tr>
<td height="24"><table width="778" border="0" cellspacing="0" cellpadding="0">
<tr>
<% set rb=server.createobject("adodb.recordset")
id=request("id")
sql="select * from corp_producttype,corpuser_info where corp_producttype.id='"&id&"' and corp_producttype.guanlian in(corpuser_info.jobFunction1,corpuser_info.jobFunction2,corpuser_info.jobFunction3)"
rb.open sql,conn,1,1
if rb.recordcount<>"" then
%>
<a href="searchResult.asp?keywords=<%=rb("corpuser_info.username")%>"> <%=rb("corpuser_info.username")%></a>
<%
id=request("id")
if len(id)=6 then%>
<%set rs = server.CreateObject("adodb.recordset")
sql = "SELECT * FROM corp_producttype where parent="&id&""
rs.open sql,conn,1,1
%>
<a href="searchResult.asp?keywords=<%=rb("corpuser_info.username")%>"> <%=rb("corpuser_info.username")%></a>
<table width="100%" border="0" cellspacing="0" cellpadding="5">
<tr>
<td width="6%"><img src="images/arrow01.gif" width="9" height="12" align="absmiddle"></td>
<td width="94%"><a href="searchResult.asp?keywords=<%=rb("corpuser_info.username")%>"> <%=rb("corpuser_info.username")%></a>
</table>
<%else%>
<%set rs = server.CreateObject("adodb.recordset")
sql = "SELECT * FROM corp_producttype where parent="&id&""
rs.open sql,conn,1,3
%><%if rb.recordcount<>"" then
%>
<% if len(id)=2 or len(id)=4 then%>
<a href="producttype_list.asp?id=<%=rs("id")%>" class="link4"><%=rs("corp_producttype")%><%=rb.recordcount%><%response.write("公司")%></a></td>
<% do while not rs.eof %>


<table width="100%" border="0" cellspacing="0" cellpadding="5">
<tr>
<td width="6%"><img src="images/arrow01.gif" width="9" height="12" align="absmiddle"></td>
<td width="94%">
<%rs.movenext%>
<%loop%>
<% else%>
<%
response.redirect "searchResult.asp?keywords="&rb("corpuser_info.username")
%>

<%end if%>
<%end if%>
<% end if%>
<% end if%> </tr>
2#
发表于 2010-1-8 07:38:12 | 只看该作者
sql="select * from corp_producttype,corpuser_info where corp_producttype.id='"&id&"' and corp_producttype.guanlian in(corpuser_info.jobFunction1,corpuser_info.jobFunction2,corpuser_info.jobFunction3)"
上面这样写,下面却写成这样,你的id到底是什么类型?
sql = "SELECT * FROM corp_producttype where parent="&id&""
如果是自动编号,则上面改写成这样试试
sql="select * from corp_producttype,corpuser_info where corp_producttype.id="&id&" and corp_producttype.guanlian in(select jobFunction1,jobFunction2,Funtion3 from corpuser_info)"
回复 支持 反对

使用道具 举报

3#
发表于 2010-1-8 07:38:15 | 只看该作者
if rb.recordcount>0 then
这个属性应该是数字类型
而且楼主如果判断记录集是否为空
也可以写
if rb.eof then
另外跳转
用Response.Redirect "[URL地址]"
的方式在服务器端进行跳转
回复 支持 反对

使用道具 举报

4#
发表于 2010-1-8 07:38:18 | 只看该作者
怪石 15:56:26
其实我的那个程序是想实现这样的操作
有两个表一个分类表,记录分类的信息,有三级分类
另外是一个公司中选择产品的列表
公司可以任意思选取三项
现在想实现从分类中得到该类中有多少家公司选择了
并输出公司相关信息
怪石 15:57:30
公司选取的是一个数值编号对应分类表中的guanlian
怪石 15:58:40
我通过sql语句可以正常显示公司的数量
就是现在无法输出公司的信息那句输出语句不被调用呀
黒馬黃子 15:59:49
你意思是说guanlian字段里的内容和corpuser_info表里的三个字段做对比?
怪石 16:00:10
是的
怪石 16:00:23
他们的值是相同的
黒馬黃子 16:00:51
如果相同会怎样?不相同又怎样?
怪石 16:01:12
得到guanlian的值就可以得到公司选的主品名称
怪石 16:02:43
相同就记录公司有公司选取了这种产品/类
并想办法输出
通过类来输出所有选取所有满足条件的值
怪石 16:02:59
就是通过分类输出公司
黒馬黃子 16:05:38
<%=rb.recordcount%><%response.write("公司")%>
你这个是显示多少家公司?
怪石 16:06:04
是呀
可以正常显示的
现在想要输出公司的信息就出了问题
回复 支持 反对

使用道具 举报

5#
发表于 2010-1-8 07:38:21 | 只看该作者
if rb.recordcount>0 then
%>
<a href="searchResult.asp?keywords=<%=rb("corpuser_info.username")%>"> <%=rb("corpuser_info.username")%></a>
那楼主满足这个条件后继续执行后面的代码还是跳转到searchResult.asp页面?
回复 支持 反对

使用道具 举报

6#
发表于 2010-1-8 07:38:24 | 只看该作者
你的问题不是已经解决了嘛
回复 支持 反对

使用道具 举报

7#
发表于 2010-1-8 07:38:27 | 只看该作者
上面是执行显示的结果
不知道为什么就是不能跳转 附件: 只有本站会员才能下载或查看附件,请您 登录 或 注册
回复 支持 反对

使用道具 举报

8#
发表于 2010-1-8 07:38:30 | 只看该作者
不明白你的意思在服务器跳转和客户端跳转没有什么不同呀
回复 支持 反对

使用道具 举报

9#
发表于 2010-1-8 07:38:33 | 只看该作者
还没有呢
正在想办法
回复 支持 反对

使用道具 举报

10#
发表于 2010-1-8 07:38:38 | 只看该作者
sql数据库的不是自动编号的
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-20 00:33 , Processed in 0.116894 second(s), 9 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表