26.10.08

Validators and someuseful data

REGULAR EXPRESSION

Name:Regular Expression validator: user not to enter numeric values in textbox and special character.
([A-Za-z]+[ ])*([A-Za-z]+)*
---------------------------------
Postcode:Regular Expression Validator :user not to enter only special characters.

([A-Za-z]+[0-9])*([A-Za-z]+)*

([A-Za-z]+[0-9])*([A-Za-z]+[0-9])*
-----------------------------------------
Regular Expression for Postcode:
([A-Za-z0-9])*
---------------------------------
mobile number:regular expression for
([0-90-9]+[-])*([0-90-9]+)*
-----------------------------------
mobile number:regular expression for
([0-90-9]+[-])*([0-90-9]+)*
--------------------------------------------------------

mobile number:regular expression with space and hyphen
([0-9]+[- ])*([0-9]+)*
--------------------------------------------------------
Card Number Regular Expression:

([0-9])*
==========================================================
Password field: enter less than 5 character

----------------------------------
COLLATE SQL_LATIN1_General_CP1_CS_AS
-----------------------------------------