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

MVC, MVP, ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.39/5 (18 votes)
31 Oct 2008CPOL12 min read 129.6K   338   98  
MVC Design pattern in comparison with MVP in the ASP.NET world
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Input;

namespace WpfMvc
{
    /// <summary>
    /// Place for all application commands
    /// </summary>
    public class Commands
    {
        protected Commands() { }
        /// <summary>
        /// This Commonad should be used as brigde between View clicks and Controller's Actions
        /// </summary>
        public static RoutedUICommand Execute = new RoutedUICommand();
    }
}

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
Czech Republic Czech Republic
Web developer since 2002, .NET since 2005

Competition is as important as Cooperation.

___

Comments and Discussions