by MYLE
25. June 2010 20:56
Sometime you want to check condition in ASP well it does not have a IIF()
so here it is
Function IIf(Condition_To_Check,TrueBit,FalseBit)
If Condition_To_Check Then
IIf = TrueBit
Else
IIf = FalseBit
End If
End Function
994faca3-dabe-4b3d-8ee1-98976f3e4f69|0|.0