Arithmetic

The arithmetic operators used in ASP coding are very similar to other programming languages.

Comparisons

Comparison operators are often used within If..Then blocks of code (conditional statements). They are helpful when you need to compare two variables and make a decision based on the outcome. The result of a comparison operator is either TRUE or FALSE.

Logic

A logical operator is used in conditional statements that require more than one set ofcomparisons.

Concatenation

When working with strings, the & operator is used to merge strings together to form a new string.

Example