I have following model:
public class FormularModel { [Required] public string Position { get; set; } [Required] [DataType(DataType.EmailAddre
I think you need to add at html code one componente Html.ValidationMessageFor. This component shows the validation.
Html.ValidationMessageFor
The code may be (using razor):
@Html.TextBoxFor(model => model.Email) @Html.ValidationMessageFor(model => model.Email)
try it.