Skip to content

Instantly share code, notes, and snippets.

@MarkBorcherding
Created January 12, 2010 18:26
Show Gist options
  • Select an option

  • Save MarkBorcherding/275449 to your computer and use it in GitHub Desktop.

Select an option

Save MarkBorcherding/275449 to your computer and use it in GitHub Desktop.
[StringLength(50, ErrorMessage = "Less than 50)]
public string CustomerLastName { get; set; }
[StringLength(50)]
public string CustomerLastName { get; set; }
[StringLength(50, ErrorMessageResourceType = typeof(Resources.ErrorMessages),
ErrorMessageResourceName = "CustomerLastNameLength")]
public string CustomerLastName { get; set; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment