0

IF の結果として ASP クラシックに複数の行を実行させるには、どの構文を使用すればよいですか?

(ASPクラシックで「{}」を使用できるかどうかわかりません)

例えば:

    If a > 10 then 

    { 
      Response.Write(" a is bigger than ten ! ")
      Response.Write(" And you've just saved the planet ! ")
    }

    end if 
4

1 に答える 1

2

{ と } を削除します。

If condition Then

    BLOCK of instructions that gets executed if condition = true

Else

    BLOCK of instructions that gets executed if condition = false

End If
于 2013-10-31T13:19:03.010 に答える