ASP.NET MVC 2 is coming along nicely and there is a new preview for your learning pleasure. It will work side-by-side with ASP.NET MVC 1, and will be included in the .NET 4 Beta 2 release. Some new stuff ?.... ModelMetadata and ModelMetadataProvider Classes The ViewDataDictionary class exposes a ModelMetada object that contains the metadata that is extracted from the model by the ModelMetadataProvider class. This allows the templated helpers to consume this metadata and adjust their output accordingly. You can use the default provider or create custom ones. Model Validator Providers The model validation providers class provides an abstraction for obtaining validation logic for the model. You can use the default provider or create custom ones...(read more) ...
Go to the complete details ...