Client-side validation is enabled for the StringLengthAttribute. Could it also be enabled for [MaxLengthAttribute](http://msdn.microsoft.com/en-us/library/system.componentmodel.dataannotations.maxlengthattribute.aspx)?
Repro Steps:
1. Create the following model class
public class Entity
{
public int Id { get; set; }
[StringLength(3)]
public string StringLength3 { get; set; }
[MaxLength(3)]
public string MaxLength3 { get; set; }
}
2. Scaffold a controller with views
3. Run the app and try to create a new entity
Expected result:
* Both StringLength3 and MaxLength3 fields are validated on the client.
Actual result:
* Only the StringLength3 field is validated on the client.

Repro Steps:
1. Create the following model class
public class Entity
{
public int Id { get; set; }
[StringLength(3)]
public string StringLength3 { get; set; }
[MaxLength(3)]
public string MaxLength3 { get; set; }
}
2. Scaffold a controller with views
3. Run the app and try to create a new entity
Expected result:
* Both StringLength3 and MaxLength3 fields are validated on the client.
Actual result:
* Only the StringLength3 field is validated on the client.
