Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what are the differences between [DataType(DataType.EmailAddress)] & [EmailAddress]

I am trying to understand what are the main differecnes between using [DataType(DataType.EmailAddress)] & [EmailAddress].

inside a model class:-

public class MYViewModel {
[DataType(DataType.EmailAddress)] OR [EmailAddress]
public string Email { get; set; }

i did a test and the two attributes will do the following:-

  1. will prevent users from adding invalud email address

  2. will display the value as "EmailTo:..."

but i can not find any differences in respect to the functionality , of course if i use html.TextboxFor then the Datatype will not have any effect, while if i use html.EditorFor then the Datatype data annotation will work,, but i am talking about the differences in respect to the technical implementation ?

like image 258
john Gu Avatar asked Oct 11 '14 15:10

john Gu


1 Answers

Hope this clarifies...

As you noted, DataType attributes are primarily used for formatting, not validation. The reason it seems to work is:

  • @Html.EditorFor renders the HTML5 <input type="email" .... which defers to the client/browser to do validation. If the browser complies, then client side validation occurs. It will "work" because the client validated it for you (this is not server side validation however)

You can test it by changing @Html.EditorFor to @Html.TextBoxFor in your view, which will render the input field as <input type="text" ...> (a standard text input field, not HTML5 email).


Sample Test

Given a model with something like this:

public class User
{
    [Required(ErrorMessage = "Email must be provided")]
    [DataType(DataType.EmailAddress, ErrorMessage = "this doesn't do email format validation")]        
    [EmailAddress(ErrorMessage = "Not a valid Email")] //Comment un-comment to see effect
    public string EmailAddress { get; set; }

    [Required(ErrorMessage = "Name must be provided")]        
    public string Name { get; set; }
}

A view using @Html.TextBoxFor instead of @Html.EditorFor to take out HTML5 client side validation in your test:

@Html.TextBoxFor(model => model.EmailAddress,....

And a controller like so:

public ActionResult CheckUser(User user)
{
    ViewBag.Foo = string.Empty;
    if(Request.HttpMethod == HttpMethod.Post.ToString())
    {
        ViewBag.Foo = ModelState.IsValid ? "User Model validated" : "Failed Model Validation";
    }
    return View();
}

If you:

  1. comment out [EmailAddress] attribute, leaving only [DataType(DataType.EmailAddress)] your model is valid with any text (no email format validation)
    • if you put "foo" your model is "valid", no error message.
  2. leave it in, you will get "server side" email format validation
    • if you put "foo", it will fail and the "Not a valid Email" error message is displayed

Hth...

like image 105
EdSF Avatar answered Nov 10 '22 19:11

EdSF