编程论坛
注册
登录
编程论坛
→
ASP技术论坛
[求助]请教优先级
lanshetou
发布于 2007-08-31 10:17, 383 次点击
我想显示记录集中的记录,请问下面那种方式对呢?两个判断如何执行呢?
if not rs.bof and rs.eof then............
if not rs.bof and not rs.eof then.........
4 回复
#2
slfyeye
2007-08-31 10:21
第二条正确的。
#3
madpbpl
2007-08-31 10:29
if not rs.bof and rs.eof then............
需要改成
if not (rs.bof and rs.eof) then............
#4
hmhz
2007-08-31 10:39
if not(rs.bof and rs.eof) then
#5
lanshetou
2007-08-31 10:55
多谢!
1