/ Published in: ASP
function that return TrueVal if Condition is true else return FalseVal.
Expand |
Embed | Plain Text
Function IIF(Condition,TrueVal,FalseVal) If Condition Then IIF = TrueVal Else IIF = FalseVal End if End Function
You need to login to post a comment.
