Feild Validations
Can some one help me about the feild validations I want to validate the email address format and phone number, mobile number formats.
View RepliesCan some one help me about the feild validations I want to validate the email address format and phone number, mobile number formats.
View RepliesI need some help on validating the number entered by the user in the ASP form .
The number should be accepted in the format : 1,234.5648 and should be rejected in the format : 1, 234.456.46 or 1, 234.456 i.e. the format with more then one blank space or more then one decimal point etc.
i am trying with /^[0-9]*.[0-9]+$/; format. I checking all space and decimal point but also not taking data like 1.234
I am currently validating a form using javascript. This checks empty fields and that email is correct. Do I also need to do these checks server side? Does anyone have a good link to info on server side validation ie. empty fields, data type, email a valid email etc?
View Replies View Related