I am trying to evaluate 2 expressions. What is the best way to do this?
Could I use an If...Then statement, like this?
If (FirstVar >= 1) AND (FirstVar <= 500) Then
Response.Write "The first variable is fairly small"
End If Can I use a Do...While statement, like this?
Do While (varCounter <= FirstVar) AND (FirstVar <= 500)
varCounter = varCounter + 100
Loop If these are not good, then what should I use instead? Please help!
Thanks,
WebGrrl 
|