Click here to Skip to main content
15,885,881 members
Articles / Programming Languages / C#

Building an MVP Framework for .NET. Part 2: Implementing Core Functionality

Rate me:
Please Sign up or sign in to vote.
4.82/5 (25 votes)
11 Feb 2008CPOL12 min read 90.2K   1.3K   89  
Basing on the concepts introduced in the first part, this article proceeds to implement the core MVP Framework funtionality.
//===========================================
// MVC# Framework | www.MVCSharp.org        |
// ------------------------------------------
// Copyright (C) 2008 www.MVCSharp.org      |
// All rights reserved.                     |
//===========================================

using System;
using System.Text;
using MVCSharp.Core.Configuration.Views;

namespace MVCSharp.Webforms.Configuration
{
    #region Documentation
    /// <summary>
    /// Attribute for declaring views for the web forms presentation
    /// mechanism.
    /// </summary>
    /// <remarks>It does not matter what type this attribute is applied
    /// to. All neccessary information is contained inside the attribute
    /// declarations.</remarks>
    /// <example>
    /// Below we declare two web views:
    /// <code>
    /// [WebformsView(typeof(MyTask), "View 1", "Default.aspx")]
    /// [WebformsView(typeof(MyTask), "View 2", "Views/View2.aspx")]
    /// class MyViews {}
    /// </code>
    /// </example>
    #endregion
    [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
    public class WebformsViewAttribute : ViewAttribute
    {
        private string viewUrl;

        #region Documentation
        /// <summary>
        /// Constructor taking the task type, view name and page Url as parameters.
        /// </summary>
        #endregion
        public WebformsViewAttribute(Type taskType, string viewName, string viewUrl)
            : base(taskType, viewName)
        {
            ViewUrl = viewUrl;
        }

        #region Documentation
        /// <summary>
        /// Parameterless constructor.
        /// </summary>
        #endregion
        public WebformsViewAttribute()
        { }

        #region Documentation
        /// <summary>
        /// Specifies the url of the page representing the view.
        /// </summary>
        #endregion
        public string ViewUrl
        {
            get { return viewUrl; }
            set { viewUrl = value; }
        }
    }
}

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
Team Leader
Russian Federation Russian Federation
Oleg Zhukov, born and living in Russia is Lead Engineer and Project Manager in a company which provides business software solutions. He has graduated from Moscow Institute of Physics and Technology (MIPT) (department of system programming) and has got a M.S. degree in applied physics and mathematics. His research and development work concerns architectural patterns, domain-driven development and systems analysis. Being the adherent of agile methods he applies them extensively in the projects managed by him.

Comments and Discussions