Hello
I have a form that validates some information, and subm to DB. I want to add an additional parameter to be validated. THe string should have no less than 8 characters.
does the syntax look correct on the first line?
Am I looking at this in the right way?
Gary
I have a form that validates some information, and subm to DB. I want to add an additional parameter to be validated. THe string should have no less than 8 characters.
Code:
if len(strEmailAddr) < 8 then
berror = true
strNameClass = "clsErrorPrompt"
strErrMsg = strErrMsg & "Entry Incomplete<br>"
does the syntax look correct on the first line?
Am I looking at this in the right way?
Gary