ValidationExpression=\"^[a-zA-Z ]+$\"
this is my current regular expression but it does not accept .(dot). I need to use it for names. like \"R
The following expression gets all
between the string beginning (^) and end ($):
The '@' is necessary to quote the backslashes inside the string.
ValidationExpression=@"^[a-zA-Z\s\.]+$"