摘要:
ASP流程控制语句1.if...then语句单行:if 条件 then 语句多行:if 条件 thenelseif 条件 then语句elseif 条件 then语句elseend if2.select case语句select case 变量case 值语句case 值语句case else语句end selectASP循环语句1.for...nextfor 变量=起始值 to 终止值 [step 步长]语句nexteg:for i=1 to 10 sum=sum+1next2.do while...loopdo while 条件(成立的条件)语句loop3.do until...loopd
阅读全文