Click here to Skip to main content
15,892,059 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.7K   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;

namespace WpfMvc
{
    /// <summary>
    /// This attribute provides the information about implementing class
    /// </summary>
    [AttributeUsage(AttributeTargets.Interface)]
    public sealed class ConcreteTypeAttribute : Attribute
    {
        public string TypeName { get; set; }

        /// <summary>
        /// Provide path to implementing class in the constructor
        /// </summary>
        /// <param name="typeName">FullName to the implementing class, including library</param>
        public ConcreteTypeAttribute(string typeName)
        {
            TypeName = typeName;
        }
    }
}

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