| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 930 人关注过本帖
标题:发生意外..NND
只看楼主 加入收藏
suyongtao
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:33
帖 子:8674
专家分:127
注 册:2004-11-6
结帖率:77.27%
收藏
 问题点数:0 回复次数:17 
发生意外..NND
<% username1=rs("sendusername")
sql="select * from love_main where username='"&username1&"'"
set rs1 = Server.CreateObject("ADODB.Recordset")
rs1.Open sql,conn,1,1
If rs1("photo_x_flag")="1" and rs1("photo_d_flag")="1" Then'大小都有
response.write "<img src=../../photo/"&rs1("photo_x")&" width=60 border=0 hspace=4 vspace=4 >"
ElseIf rs1("photo_x_flag")="1" and rs1("photo_d_flag")="0" Then'有小无大
response.write "<img src=../../photo/"&rs1("photo_x")&" width=60 border=0 hspace=4 vspace=4 >"
ElseIf rs1("photo_d_flag")="1" and rs1("photo_x_flag")="0" Then'有大无小
response.write "<img src=../../photo/"&rs1("photo_d")&" width=60 border=0 hspace=4 vspace=4 >"
Else
if rs1("sex")="男" then
response.write "<img src=images/nophoto_man.gif width=60 hspace=4 vspace=4>"
else
response.write "<img src=images/nophoto_woman.gif width=60 hspace=4 vspace=4>"
end if
End If
rs1.close
%>
我看不出代码哪错了.在别的文件里也没事就是放到这个网页就是不行了..不知道为什么..帮我看一下.
搜索更多相关主题的帖子: NND 意外 
2007-02-09 17:23
师妃暄
Rank: 6Rank: 6
等 级:贵宾
威 望:27
帖 子:805
专家分:107
注 册:2006-3-1
收藏
得分:0 
把错误信息发上来看看

有实力才会有魅力 实力来自坚持不懈的努力
2007-02-09 22:39
rainic
Rank: 6Rank: 6
等 级:贵宾
威 望:27
帖 子:2367
专家分:0
注 册:2005-8-9
收藏
得分:0 
我也看不出

2007-02-09 23:39
suyongtao
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:33
帖 子:8674
专家分:127
注 册:2004-11-6
收藏
得分:0 
If rs1("photo_x_flag")="1" and rs1("photo_d_flag")="1" Then'大小都有
这行发生意外..不知道为什么..

面朝大海,春暖花开!
2007-02-11 08:47
suyongtao
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:33
帖 子:8674
专家分:127
注 册:2004-11-6
收藏
得分:0 
我挨个试了就不不让写IF..ELSE,一写就报错,不知道为什么..

面朝大海,春暖花开!
2007-02-11 09:01
islet
Rank: 12Rank: 12Rank: 12
等 级:贵宾
威 望:89
帖 子:6548
专家分:0
注 册:2005-1-28
收藏
得分:0 
你随便建一个页面111.asp 里面写
<%a=1
b=2
if a>b then
a=5
elseif a>1 then
b=6
end if%>
看看出错不 要是出错就是脚本引擎有问题 重新安装一下
2007-02-11 10:21
suyongtao
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:33
帖 子:8674
专家分:127
注 册:2004-11-6
收藏
得分:0 

我加了这句代码就不出错了..
On Error Resume Next

面朝大海,春暖花开!
2007-02-11 11:30
suyongtao
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:33
帖 子:8674
专家分:127
注 册:2004-11-6
收藏
得分:0 
没报错,应该是我文件里的其他文件的事....倒置他出错了..我正在找.

面朝大海,春暖花开!
2007-02-11 11:31
suyongtao
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:33
帖 子:8674
专家分:127
注 册:2004-11-6
收藏
得分:0 
我把他单独拿出来也不行,也是发生意外.为什么..?


面朝大海,春暖花开!
2007-02-12 08:59
suyongtao
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:33
帖 子:8674
专家分:127
注 册:2004-11-6
收藏
得分:0 

<% username=yutongtong

sql="select * from love_main where username='"&username&"'"
set rs = Server.CreateObject("ADODB.Recordset")
rs.Open sql,conn,1,1
IF (rs.BOF=true and rs.EOF =true) or rs.RecordCount=0 THEN
If rs("photo_x_flag")="1" and rs("photo_d_flag")="1" Then'大小都有
response.write "<img src=photo/"&rs("photo_x")&" width=55 height=45 border=0 hspace=4 vspace=4 >"
ElseIf rs("photo_x_flag")="1" and rs("photo_d_flag")="0" Then'有小无大
response.write "<img src=photo/"&rs("photo_x")&" width=55 height=45 border=0 hspace=4 vspace=4 >"
ElseIf rs("photo_d_flag")="1" and rs("photo_x_flag")="0" Then'有大无小
response.write "<img src=photo/"&rs("photo_d")&" width=55 height=45 border=0 hspace=4 vspace=4 >"
Else
if rs("sex")="男" then
response.write "<img src=images/nophoto_man.gif width=55 height=45 hspace=4 vspace=4>"
else
response.write "<img src=images/nophoto_woman.gif width=55 height=45 hspace=4 vspace=4>"
end if
End If
else response.Write("没记录!!")
end if
rs.close%>
这么写也不对.我倒.


面朝大海,春暖花开!
2007-02-12 09:36
快速回复:发生意外..NND
数据加载中...
 
   



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

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