/ Published in: ASP
function that return TrueVal if Condition is true else return FalseVal.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
Function IIF(Condition,TrueVal,FalseVal) If Condition Then IIF = TrueVal Else IIF = FalseVal End if End Function