Skip to content

Instantly share code, notes, and snippets.

@pauldambra
Created January 12, 2012 13:02
Show Gist options
  • Save pauldambra/1600372 to your computer and use it in GitHub Desktop.
Save pauldambra/1600372 to your computer and use it in GitHub Desktop.
Edited RegisterModel
public class RegisterModel
{
[Required]
[Display(Name = "User name")]
public string UserName { get; set; }
[Required]
[DataType(DataType.EmailAddress)]
[Display(Name = "Email address")]
public string Email { get; set; }
[Required]
[StringLength(100, ErrorMessage = "The {0} must be at least {2} characters long.", MinimumLength = 6)]
[DataType(DataType.Password)]
[Display(Name = "Password")]
public string Password { get; set; }
[DataType(DataType.Password)]
[Display(Name = "Confirm password")]
[Compare("Password", ErrorMessage = "The password and confirmation password do not match.")]
public string ConfirmPassword { get; set; }
//Added Address field
[Required]
public string Address { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment