I added validation on my Model, like this:
[Required]
[StringLength(60, MinimumLength = 4)]
[Display(Name = "Users code")]
public string UserCode { get; set; }
As you can see guys, when I'm creating new user, field UserCode must be filled, and minimum length of characters into the field is 4 and max is 60.
And here is how it looks when I try to skip this field or insert less than 4 characters..

As you can see guys there is a text The string must be a field bla bla bla, how could I hide or remove that? I really don't need it
@Html.ValidationMessageFor...- freedomn-m@Html.ValidationSummary(true)to@Html.ValidationSummary(false)- freedomn-m