ModelMetaData, Custom Class Attributes and an indescribable question
What I want to do seems so simple. In my index.cshtml I want to display the WizardStepAttribute Value So, a user will see at the top of each page, Step 1: Enter User Information I have a ViewModel called WizardViewModel . This ViewModel has a property that is IList<IStepViewModel> Steps each "step" implements the Interface IStepViewModel, which is an empty interface. I have a view called Index.cshtml. This view displays EditorFor() the current step. I have a custom ModelBinder, that binds the View to an new instance of the concrete class implementing IStepViewModel based on the WizardViewModel