boolean = Check(input, length)
Example Usage:
ASP Source Code:<% ' String must be 7 characters long - Returns False Response.Write Check("Bill Gearhart", 7) ' string must be 4 characters long - Returns True Response.Write Check("Bill", 4) %>
<% Private Function Check(byVal Input, byVal length) Dim a if IsNull(Input) Then Check = Null Exit Function Else a = Len(Input) If CLng(a) = CLng(length) Then Check = True Else Check = False End If End If End Function %>