I\'m somewhat of a noob, so bear with me please. I\'m building an MVC project that gets data from a web service (WCF) as exposed by a \"datamodule\" class that passes parameters to the service. Righ
I have a model like the following: public class TestViewModel { string UpdateProperty { get; set; } string IgnoreProperty { get; set; }
The platform is ASP.NET MVC 2. We have a user story that states: On the [view], don\'t allow a user to edit [property] unless the user is
I have made a custom binder for an abstract class. The binder decides which implementation to use. It works well, but when I add a property which does not exist in the abstract class to a child class,
I am trying to make a binder for an abstract class. The binder decides which implementation of the class to use.
I have the following unit test defined to test my model binder: [TestMethod] public void DateTime_Works() {
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 strongly typed view with my viewmodel which contains an object Person and an List of Skills. Person is quite straightforward. I use Html Helpers like this @Html.TextBoxFor(m => m.Person.Fi
I\'m fairly new to \"real world\" MVC / .NET development (i\'ve been studying MVC since MVC 1, and i\'ve spent the last 10 years web based so i\'m not really a noober either) I\'m hoping there\'s some
Currently I have a custom Model Binder and Model Binder Provider that detects \"text/xml\", deserializes it using MvcContrib (here is the code/setup), and binds it to a custo开发者_如何学运维m Model t