asp中if语句疑问

2025-01-18 20:17:58
推荐回答(2个)
回答1:

你可以定义一个变量
dim a
a = false

for ***
if *** then
a = true
exit for
end if
next

if a then

end if

回答2:

for i=1 to 100
if a=1 or a=i
then

end if
next
先定义的i范围再用if判断其实不用or也可以因为i已经包含1了