3
votes
1answer
461 views
How do you override the string representation the HTML helper methods use for a model’s properties?
The html helper methods check the ViewDataDictionary for a value. The value can either be in the dictionary or in the Model, as a property. To extract the value, an internal sealed class named the …
3
votes
MVC RC Validation: Is this right?
Call this extension method:
public static void AddModelError (this ModelStateDictionary modelState, string key, string errorMessage, string attemptedValue) {
modelSt …
