I want to make user enter at least a certain number of characters in a search box
strString = Request.Form ("Name of input box on form"
If LEN(strString)< 3 THEN
Response.Write "You need to enter at least 3 Characters"
ELSE
'Continue on with code
'Continue on with results from database
I have tried this and it doesnt seem to work
strString = Request.Form ("Name of input box on form"
If LEN(strString)< 3 THEN
Response.Write "You need to enter at least 3 Characters"
ELSE
'Continue on with code
'Continue on with results from database
I have tried this and it doesnt seem to work