Not
The Not operator does a boolean negation of an expression.
It basically reverses the result so that True becomes False
and False becomes True.
Just like the english language, if you add the word not to the absolutes
true and false, you get not true and not false which evaluate to their
opposites: false and true.
Dim I I = 3 If I > 5 Then Response.Write "I greater than 5" If Not (I > 5) Then Response.Write "I is not greater than 5"
If I < 5 And Not (I > 4) Then Reponse.Write "True"
|
 |

|