After reading ASP.NET MVC 2 in Action and watching Jimmy Bogard\'s presentation from MvcConf (both highly recommended!), I began to implement some of their ideas.
I\'ve been looking on forums for 2 days now and can\'t find a good answer so I\'ll just post it. I appear to be having a problem posting JSON back to the controller to save.The JSON should map to mod
I have a UserControl with some custom dependency properties bound to a clr property in the ViewModel. The ViewModel has applica开发者_JS百科tion logic where I deal with the TextPointer/TextRange class
Should my ViewModel encapsulate the Services needed to populate it? Currently I\'m doing it as follows:
Assuming you wanted to develop your Controllers so that you use a ViewModel to contain data for the Views you render, should all data be contained within the ViewModel? What conditions would it be ok
I have recently parametrized my ViewModel\'s contructor. Before that, I was doing this in my window: <Window.DataContext>
I\'ve seen it all over SO, blogs, and book开发者_StackOverflows, where the authors tell you add ViewModels specific to your View in your Model projects as wrappers for your underlying model objects. T
When I create a view开发者_如何学Python and bind it directly to one class which has the properties I want to show on the view, the fields (textboxes, etc.) for it are created automatically. But when I
Could someone help me with this issue. I\'m trying to figure out how to check two values on a form, one of the two items has to be filled in. How do I do a check to ensure one or both of the items hav
I\'m sticking on how to best present some data that\'s being dynamically generated from two different tables.