I\'m reading about the Model-View-Presenter pattern, and I\'m a bit confused: can a presenter have state? Or is the task of the Presenter to only group methods together containing business l开发者_Sta
My architecture looks like this: View - Controller - Services Think of one of the views as a Person details page. The controller calls
I\'m taking another look at Model-View-Presenter (or Supervising Controller, whatever it\'s called nowadays) since we use WebForms exclusively at work and I think the separation of concerns can help.
I have some jQuery which modifies elements on the page after the user performs 开发者_开发问答an action.These are persisted server-side so it all looks nice and fluid for the user.
I was reading this article on using passive view design patterns with MVP: http://msdn.microsoft.com/en-us/magazine/ee336019.aspx
i\'m creating a shopping website using c# and asp.net and i want to use MVP pattern inside of three tier architecture, specifically in the presentation layer.
I 开发者_开发知识库want to Implement MVP pattern. I have a user control that has some Textboxes and when I put it in form I call a method from usercontrol and fill textboxes. But in mvp pattern I don\
I am creating a program which utilizes MVP architecture.Please tell me which is the best place to write the validation. Someone told me that the code in presenter should only contains logic to handle
I\'ve started to wrap my head around the whole MVP pattern and despite I\'m doing fine with single objects it starts getting difficult when it comes to collections.
I will give a full example that compiles: using System.Windows.Forms; interface IView { string Param { set; }