Tagged Questions

5
votes
1answer
217 views

How do you use Presentation Model with Webforms?

I have started using Presentation Model w/ ASP.NET webforms and like the pattern quite a bit. What I am really having an issue with is where to instantiate some of my classes, most …
1
vote
1answer
87 views

MVP vs. Presentation Model, which one is better?

UPDATE MVP vs. Presentation Model, which one is better (for desktop application) - in terms of maintainability testability complexity flexibility separation of concern - changi …
1
vote
4answers
152 views

What are the benefits of an XML data model over the DataSet model?

At my current job we have a CMS system that is .NET/SQL Server based. While customizing a couple of the modules for some internal use, I was a little surprised to see that instead …
0
votes
0answers
14 views

Presentation Model

I want to set values for form labels from the controller. Can I send List<String> as parmeter and have the form to set individual lables OR set the values for each and every …
0
votes
4answers
418 views

What are the biggest pain points with the ViewModel pattern?

Glenn Block and I have been working together on the ViewModel pattern. We’ve been trying to identify the biggest pain points associated with the pattern, with the goal of adding f …
0
votes
2answers
135 views

Handling client-side domain object state in a presentation model.

I'm currently building the client side of a Flex/PHP project using the Presentation Model pattern. What I'm trying to achieve: I currently have a view displaying non-editable info …