What is wrong in this string validation in asp mvc4?

Totto1234

New Member
Before adding of Regular expression it was working fine.\[code\]public class Customer{ [Required] [RegularExpression(@"^[a-zA-Z''-'\s]{1,40}$", ErrorMessage="Numbers and special characters are not allowed in the last name.")] public string LastName { get; set; }}\[/code\]I'm getting Error. What is wrong in this string validation in asp mvc4?
 
Back
Top