[RegularExpression("/^[a-z,.'-]{2,15}$/i", ErrorMessage = "bla bla'")]
I have an input text field regulated with this regexp and for example "asd" should be ok but its not apparently... bla bla is shown!The required data annotation is working propery but this one is not.What am I missing?
"^[A-Za-z,.'-]{2,15}$"