Hi..
I am doing work in asp.net and use regular expression validation control give definition and its properties for the particular webpage?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Anuja PawarPosted Dec 20, 2011, 6:28 AM
The RegularExpressionValidator control is used to ensure that an input value matches a specified pattern.
Note: Both server- and client-side validation are performed unless the browser does not support client-side validation or the EnableClientScript property is set to false.
Try this simple example
Satyapriya NayakPosted Dec 12, 2011, 10:39 PM
The RegularExpressionValidator Control checks the data entered by the user matches a pattern defined by a regular expression.
The important property of the RegularExpressionValidator Control is :
ValidationExpression : The regular expression defines a pattern that the input data must match to be valid.
we will see how we can Validate Email ID and Web site URL using RegularExpressionValidator Control
Thanks