␡
- The Fundamentals of VBScript
- VBScript Versus VB
- Creating Variables in VBScript
- Concatenating Strings
- Arrays and Loops
- Resizing Arrays
- Inequality Operators
- Conditional Statements
- Select Case Statements
- Sub
- Function
- Working with Arguments
- Beware of Types
- Event Procedure Naming Syntax
- Server-Side Events
- Local Variables
- Script-Level Variables
Inequality Operators
Inequality statements are what you normally think of as greater than and less than statements. VBScript supports the following symbols shown in Table 3.3.
Table 3.3: VBScript Inequality Operators
Operator |
Description |
Example |
Evaluates |
<> |
Not equal |
2 <> 3 |
True |
< |
Less than |
2 < 3 |
True |
<= |
Less than or equal to |
2 <= 2 |
True |
> |
Greater than |
2 > 3 |
False |
>= |
Greater than or equal to |
3 >= 3 |
True |