Tag Archives: ASP

myStr = “He said “”Bah!”" out loud.” myStr = “He said ” & chr(34) & “Bah!” & chr(34) & ” out loud.”

Posted in ASP | Tagged | 2 Comments

The following APS functions return true or false. Function isOdd(n) isOdd = cBool(n Mod 2) End Function Function isEven(n) isEven = (Not isOdd(n)) End Function

Posted in Snippet Library - ASP | Tagged , | Leave a comment