vb IsNull

Public Function IsNull(Value, DefaultValue) 
	If IsNull(Value) Or IsEmpty(Value) Then
	    IsNull = DefaultValue
	Else
	    IsNull = Value
	End If
End Function
IsNull implementation in Classic ASP.

Updated: Thursday 7th October 2010, 18:11pm

There are 0 comments

Leave a comment of your own

Comments are currently closed.