I want to check if a field contains both a numeric value or a letter how do i do that....
I have
if isNumeric(passwd) =false Then
errormsg = errormsg & "Password must contain atleast one numeric charcter " & "<BR>"
end if
but then it doesnt except letters.
-your script must convert the input to lower case
-your script must remove all spaces from the input,
i.e. it replaces each space character with an empty string
check the input contains the "@" symbol, else display a
specific message
-check the "@" symbol is not at the beginning or end of the...
Ok so I have a website and I need users to either fill in a box HW or SW but it must be incasesensitive meaning it doesnt matter if its capitalized or not... how will i go about it?
I got the box already just need the code for incasesenitive in ASP
But what happens if the user uses uppercase??
Im working on a page where users must fill in fields. I want the user to fill in all the fields and if they dont it should display a message otherwise just continue this is what I have is there anything wrong?
if request("button")="Add" then
if request("txt") = "" then
endresponse = "Please...