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

Entity Framework Implementation Using ASP.NET MVP

Rate me:
Please Sign up or sign in to vote.
4.07/5 (10 votes)
13 May 2011GPL33 min read 56.9K   389   17  
Entity Framework Implementation using ASP.NET MVP
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using TestMVPApp.Presenter;

namespace TestMVPApp.View
{
    public partial class InputViewPage : System.Web.UI.Page, IView
    {
        protected void Page_Load(object sender, EventArgs e)
        {
        }

        protected void btnShowData_Click(object sender, EventArgs e)
        {
            TestPresenter detailsPresenter = new TestPresenter(this);
            if (detailsPresenter.SaveDetails() != null)
            {
                Response.Redirect("DisplayViewPage.aspx");
            }
        }

        public string FirstName
        {
            get { return txtFname.Text; }
            set { txtFname.Text = value; }
        }
        public string MiddleName
        {
            get { return txtMName.Text; }
            set { txtMName.Text = value; }
        }
        public string LastName
        {
            get { return txtLName.Text; }
            set { txtLName.Text = value; }
        }
        public string Address
        {
            get { return txtAddress.Text; }
            set { txtAddress.Text = value; }
        }
        public string ContactNo
        {
            get { return txtContact.Text; }
            set { txtContact.Text = value; }
        }
        public string Message
        {
            get { return ltrlMessage.Text; }
            set { ltrlMessage.Text = 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 GNU General Public License (GPLv3)


Written By
Software Developer
Nepal Nepal
I am a software developer with knowledge of C, C++, PHP, MySQL, C#.Net, ADO.Net, MSSQL Server, Crystal Reports, Asp.Net, Oracle, Asp.Net MVP, MVC, jQuery, javascript, WebService, WCF, Entity Framework and so on. I love to play on New Technologies.

Comments and Discussions