| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 488 人关注过本帖
标题:[求助]头疼的问题~
只看楼主 加入收藏
可见光
Rank: 1
等 级:新手上路
帖 子:143
专家分:0
注 册:2007-6-15
收藏
 问题点数:0 回复次数:5 
[求助]头疼的问题~




<html>
<head>
<title>无标题文档</title>
</head>

<body>
<!--#include file="conn.asp"-->
<%

ProductNo=cint(Request.QueryString("ProductNO"))
strSQL="update Product set Look_Count=Look_Count+1 where Product_No="&ProductNo&""
conn.execute strSQL
set rs=server.CreateObject("adodb.recordset")
sqltext="select *from Product Where Product_No="&ProductNo&""
rs.open sqltext,conn,1,1
%>
<table border="0" cellpadding="10" cellspacing="0" width="100%" height="92" bgcolor="#33CCCC">
<tr>
<td width="100%" height="22" valign="middle"><a href="index.asp">首页</a><a href="sqlb.asp?sqdl=<%=rs("Class_1")%>sqxl=<%=rs("Class_2")%>"><%=rs("Class_1")%>-<%=rs("Class_2")%></a>
<%=rs("Product_Name")%>
<hr size="1" color="#999999"></td></tr><tr><td width="100%" height="70">
<div align="center"></div><table border="0" cellpadding="2" width="100%" height="44" >
<tr>
<td width="44" height="22" align="center"><b></b></td>
<td width="56" height="22" align="center"></td>
</tr>
<tr><td width="44" height="22" align="center"><img border="0" src="<%=rs("P_Full_Pic")%>"></td>
<td width="56" height="33" align="center" rowspan="2">
<p align="left" style="word-spacing:0; margin-top:0; margin-bottom:0 ">
<p align="left" style="word-spacing:0; margin-top:0; margin-bottom:0 ">
<b>[市场价格]</b><strike><%=rs("P_Oldprice")%>元</strike>
<p align="left" style="word-spacing:0; margin-top:0; margin-bottom:0 ">
<p align="left" style="word-spacing:0; margin-top:0; margin-bottom:0 "> <b>[会员价格]</b><font color="#666699">:<%=rs("P_Newprice")%>元&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
立即节省:<%=rs("P_Oldprice")-rs("P_Newprice")%>元</font>
<p align="left" style="word-spacing:0; margin-top:0; margin-bottom:0 ">
<p align="left" style="word-spacing:0; margin-top:0; margin-bottom:0 ">
<b>[CD简介]</b>:<%=rs("Product_Intro")%></P>
<p align="left" style="word-spacing:0; margin-top:0; margin-bottom:0 "></P>
<p align="left" style="word-spacing:0; margin-top:0; margin-bottom:0 ">
<b>[简单说明]</b>:<%=rs("Product_Show")%></p>
<p align="left" style="word-spacing:0; margin-top:0; margin-bottom:0 "></p>
<p align="left" style="word-spacing:0; margin-top:0; margin-bottom:0 ">
<b>[付款方式]</b><a href="">请看说明</a></td></tr>
<td width="44%" height="58" align="center" valign="top"><br>
<p>浏览次数:<%=rs("Look_Count")%>
<p><a href='javascript:openbag(<%=rs("Product_Id")%>)'><img border="0" src="image/a.gif"></a></td>
</tr>
<tr><td width="100%" height="58" align="center" valign="top" colspan="2"><p style="word-spacing:0; margin-top:0; margin-bottom:0 ">
<p style="word-spacing:0; margin-top:0; margin-bottom:0 ">
<p style="word-spacing:0; margin-top:0; margin-bottom:0 ">如果你是第一次购物请看<a href="">《购物指导》</a></td></tr>
</table>

</table>
</body>
</html>
这个是头疼问题,报错了 不给出错误在哪



错误类型:
ADODB.Field (0x80020009)
BOF 或 EOF 中有一个是“真”,或者当前的记录已被删除,所需的操作要求一个当前的记录。
/spjj.asp



大哥大姐帮我分析下


我是当时直接在数据库里写了点东西,没有用户函数实现!

[此贴子已经被作者于2007-8-11 16:30:02编辑过]

搜索更多相关主题的帖子: 头疼 
2007-08-11 10:52
愿望
Rank: 1
等 级:新手上路
威 望:1
帖 子:111
专家分:0
注 册:2007-7-28
收藏
得分:0 
没有查询到数据
在 rs.open 后面加一句:
if rs.eof or rs.bof then
response.write "rs.eof() or rs.bof() returns true"
response.end
end if
看一下结果

2007-08-11 11:49
可见光
Rank: 1
等 级:新手上路
帖 子:143
专家分:0
注 册:2007-6-15
收藏
得分:0 
if rs.eof or rs.bof then
response.write "没有查询到数据"
response.end
end if我把这个加了 ,数据库里明明不是空的,怎么会显示"没有查询到数据"
用if rs.eof or rs.bof then 或if rs.eof and rs.bof then 都是一样的结果
2007-08-11 13:34
愿望
Rank: 1
等 级:新手上路
威 望:1
帖 子:111
专家分:0
注 册:2007-7-28
收藏
得分:0 
你看一下获取道的 Product_No 数据库中有吗?
另:可否把数据库发上,以便调试?

2007-08-11 13:36
yms123
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:209
帖 子:12488
专家分:19042
注 册:2004-7-17
收藏
得分:0 

提交过来的网页没有接受到值。

2007-08-11 14:56
可见光
Rank: 1
等 级:新手上路
帖 子:143
专家分:0
注 册:2007-6-15
收藏
得分:0 

怎么系统不让我上传啊

2007-08-11 16:31
快速回复:[求助]头疼的问题~
数据加载中...
 
   



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

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