In ASP.NET MVC 3 web application I have a viewmodel with properties which marked with DataType attributes, but they don't do actual validation on cliant side, and on server side, Why?

public class RegisterModel
{
    [Required(ErrorMessage = "Phone number is required")]
    [DataType(DataType.PhoneNumber)]
    [Display(Name = "Phone number")]
    public string PhoneNumber { get; set; }

    [Required(ErrorMessage = "E-mail address is required")]
    [DataType(DataType.EmailAddress, ErrorMessage = "Please enter a valid date (ex: 2/14/2011)")]
    [Display(Name = "E-mail address")]
    public string Email { get; set; }
}

Thanks for replying.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

DataType attributes can't be used to validate user input. They only provide hints for rendering values using templated helpers.

If there is not a built in validation attribute for what you need, eg, Range or Required, then what you should do is to create a custom property validation attribute and decorate your model property with that for the purposes of validation. EG, for DataType.EmailAddress

This is described in Pro Asp.net mvc 3 Framework (Adam Freeman and Steve Sanderson, page 618 or thereabouts)

link|improve this answer
feedback

Did you include:

<script src="@Url.Content("~/Scripts/jquery.unobtrusive-ajax.min.js")" type="text/javascript"></script>

in your master page?

Also, you need these in your Web.config:

<appSettings>
    <add key="ClientValidationEnabled" value="true"/>
    <add key="UnobtrusiveJavaScriptEnabled" value="true"/>
</appSettings>
link|improve this answer
the same result – Artur Keyan Aug 15 '11 at 8:39
added web.config bits too. See above. – Chris Aug 15 '11 at 8:41
it is already added, still same result – Artur Keyan Aug 15 '11 at 10:23
This answer is only related to the problem of enabling client side validation. It has nothing to do with your problem or question. – awrigley Aug 15 '11 at 10:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.