| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 338 人关注过本帖
标题:高手看下我的代码有错
取消只看楼主 加入收藏
ikonglin
Rank: 2
来 自:中国
等 级:论坛游民
帖 子:71
专家分:38
注 册:2008-4-26
结帖率:47.37%
收藏
 问题点数:0 回复次数:1 
高手看下我的代码有错
<%
if request.Cookies("id")="" then
response.Cookies("id")=1
else
response.Cookies("id")=request.Cookies("id")+1
end if
<!--#include file="conn/conn.asp"-->
<%
sql="select * from 职工信息"
rs.open sql,cn,1,1
if request.Cookies("id")>rs.recordcount
response.Cookies("id")=1
end if
sql="select * from 职工信息 where id=" & request.Cookies("id")
rs.open sql,cn,1,1
response.Write rs("照片")
%>
<img src=<%=rs("照片")%> />
这段代码哪里错了啊
搜索更多相关主题的帖子: 代码 
2010-11-04 21:01
ikonglin
Rank: 2
来 自:中国
等 级:论坛游民
帖 子:71
专家分:38
注 册:2008-4-26
收藏
得分:0 
<%
response.buffer=true
if request.Cookies("id")<>"" then
response.Cookies("id")=request.Cookies("id")+1
else
response.Cookies("id")=1
end if
%>
<!--#include file="conn/conn.asp"-->
<%
rs.opne "select * from 职工信息",cn,1,1
if request.Cookies("id")>rs.recordcount then
response.Cookies("id")=1
end if
rs.close
sql="select * from 职工信息 where id=" & request.Cookies("id")
rs.open sql,cn,1,1
response.Write rs("照片")
%>
<img src=<%=rs("照片")%> />
<%
rs.close
%>
现在改成这样了,还是不行
2010-11-04 21:46
快速回复:高手看下我的代码有错
数据加载中...
 
   



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

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