为您找到"
asp中'80020009' 错误,谁帮我看下啊?
"相关结果约100,000,000个
news_id=request("id")set rs=server.createobject("adodb.recordset")rs.open"select cdkey88_news.*,News_class.com_id,News_class.com_name from [cdkey88_news], [News_class] where cdkey88_news.game_id=News_class.com_id and news_id="&news_id&" ",conn if rs.eof then Respons...
没有打开数据库表 Request对象没有获取到数据 要先连接到数据库,打开数据库表,获取数据后才能执行分页操作
出现这个问题 就像他们说的一样,是rs数据集中没有找到数据!解决办法:你要先 检查一下 你的sql语句 ,在数据库的查询分析器中 写出来 查一下,如果真的没有数据了话,就要改一下 sql语句!更好的方法 是要 代码里进行判断 在rs.open 下 加上 if rs.bof and rs.eof then 跳出 语句...
如果还不行的话,就是你的rs没有取出值来,可以在这行上面执行一下 response.write rs("temid")response.end
rssmm("mb_bb")=mbbb+dingdan '加入新的奖金 end if rssmm.update '更新end ifrssmm.close:set rssmm=nothing中间 上级推荐人奖励更新 代码换成这一段。错误原因 有可能 是因为 上级推荐人匹配为空。建议把exec那个sql语句response.write 出来 在数据库中运行看看。
你的数据表Qianbo_products里面没有符合查询条件的数据,你rs("Seokeywords")肯定报错 可以改为 rs.open SQl,conn,1,3 if not rs.eof then if rs("Seokeywords")<>"" then Seokeywords=rs("Seokeywords")else Seokeywords=rs("productname")end if '''图片上没截取全的其他代码写在这里 '...
rs.open sql,conn,1,1 '先进行如下的判断,判断该记录在数据库中是否存在,如果存在才能读取rs("newsid")这样的值,否则就会出现错误 if not rs.eof and not rs.bof then > <td width="337" height="79" class="p1"><a href="openarticle.asp?id=<%=rs("newsid")%>" target="_...
asp的post内容大小有限制,可能你的body内容太多了,超过默认限制了。
rs.open exec,conn,1,3 rs("hit")=rs("hit")+1 rs.update 改成 rs.open exec,conn,1,3 if not rs.eof then if rs("hit")&""<>"" then rs("hit")=rs("hit")+1 else rs("hit")=1 end if rs.update else response.write("数据不存在")response.end()end if ...
我们以前遇到过这种情况,Request.Form提交的数据太多了,导致IIS报告异常“堆栈溢出. 处理中的数据超过允许的极限”。这是因为iis默认设置中最大只能接受200K的内容。是这里造成的原因。IIS6 可以做以下调整。先在服务里关闭iis admin service服务 找到windowssystem32inesrv下的metabase.xml,打开,找到ASP...