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

An Introduction to Entity Framework for Absolute Beginners

Rate me:
Please Sign up or sign in to vote.
4.74/5 (248 votes)
9 Apr 2012CPOL5 min read 1M   23.5K   375  
An introduction to Entity Framework for absolute beginners.
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="UpdateContact.aspx.cs" Inherits="EntityFrameworkTest.UpdateContact" %>
<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
    </asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
                  Update the contact details<br />
                  <br />
                  ID:&nbsp;&nbsp;
                  <asp:Label ID="Label1" runat="server" Font-Bold="True" Text="Label"></asp:Label>
                  <br />
                  <br />
                  First Name:&nbsp;&nbsp;
                  <asp:Label ID="Label2" runat="server" Font-Bold="True" Text="Label"></asp:Label>
                  <br />
                  <br />
                  Last Name:&nbsp;&nbsp;
                  <asp:Label ID="Label3" runat="server" Font-Bold="True" Text="Label"></asp:Label>
                  <br />
                  <br />
                  Phone Number:&nbsp;&nbsp;&nbsp;
                  <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
                  <br />
                  <br />
                  <asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="Update" />
&nbsp;
                  <asp:Button ID="Button2" runat="server" onclick="Button2_Click" Text="Cancel" />
&nbsp;&nbsp;&nbsp;
                  <asp:Label ID="Label4" runat="server"></asp:Label>
                  <br />
                  <br />
                  <asp:CheckBox ID="CheckBox1" runat="server" Text="Delete" />
&nbsp;
                  <asp:Button ID="Button3" runat="server" onclick="Button3_Click" Text="Delete" />
&nbsp;&nbsp;
                <br />
                
        
</asp:Content>

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
Architect
India India

I Started my Programming career with C++. Later got a chance to develop Windows Form applications using C#. Currently using C#, ASP.NET & ASP.NET MVC to create Information Systems, e-commerce/e-governance Portals and Data driven websites.

My interests involves Programming, Website development and Learning/Teaching subjects related to Computer Science/Information Systems. IMO, C# is the best programming language and I love working with C# and other Microsoft Technologies.

  • Microsoft Certified Technology Specialist (MCTS): Web Applications Development with Microsoft .NET Framework 4
  • Microsoft Certified Technology Specialist (MCTS): Accessing Data with Microsoft .NET Framework 4
  • Microsoft Certified Technology Specialist (MCTS): Windows Communication Foundation Development with Microsoft .NET Framework 4

If you like my articles, please visit my website for more: www.rahulrajatsingh.com[^]

  • Microsoft MVP 2015

Comments and Discussions