Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
ASP.NET

Operators in Classic ASP

Use arithmetic, string (&), comparison, and logical operators.

Operators in Classic ASP — a practical guide to Classic ASP operators with clear examples you can reuse in real projects.

ASP & ASP.NET Tutorial Series (10/247). Prefer one article? Read the complete ASP.NET tutorial.

Short description

& concatenates strings; + can coerce numbers.

Operators

total = qty * price
msg = "Hi " & userName
If age >= 18 And active Then