Click here to Skip to main content
15,881,745 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 186.4K   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 IAlternateView : IDefaultPageView
    {
        void AddDayNumber(string day);
        int SelectedMonth { get; }
        string UserName { set; }
        event EmptyEventHandlerDelegate OnMonthChanged;
    }
}

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