Click here to Skip to main content
15,892,737 members
Articles / Web Development / ASP.NET

Advancing the Model-View-Presenter Pattern - Fixing the Common Problems

Rate me:
Please Sign up or sign in to vote.
4.53/5 (28 votes)
6 Sep 2007CPOL7 min read 187.3K   611   105  
Addressing the common issues related to the MVP pattern using ASP.NET and WinForms clients.
using System;
using System.Collections.Generic;
using System.Text;

namespace Sample.Presentation
{
    public interface IDefaultPageView : IView
    {
        void AddWeekday( string day );
        void AddMonth( string month );
        event EmptyEventHandlerDelegate OnLoadView;
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer PageLabs
United States United States
I'm the founder of PageLabs, a web-based performance and SEO optimization site.

Give your site a boost in performance, even take a free speed test!

http://www.pagelabs.com

Comments and Discussions