vb IIf

Function IIf(bExpression, strTrue, strFalse)
	If bExpression Then
		IIf = strTrue
	Else
		IIf = strFalse
	End If
End Function
ASP implementation of VB's IIf.

Updated: Saturday 9th October 2010, 22:55pm

There are 0 comments

Leave a comment of your own

Comments are currently closed.