Validation firing in ASP.NET MVC
- by rkrauter
I am lost on this MVC project I am working on. I also read Brad Wilsons article.
http://bradwilson.typepad.com/blog/2010/01/input-validation-vs-model-validation-in-aspnet-mvc.html
I have this:
public class Employee
{
[Required]
public int ID { get; set; }
[Required]
public string FirstName { get; set; }
…