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

A Beginner's Tutorial for Understanding ADO.NET

Rate me:
Please Sign up or sign in to vote.
4.79/5 (80 votes)
6 Apr 2012CPOL8 min read 433.8K   10.5K   175  
A beginner's tutorial for understanding ADO.NET using a simple application.
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="AddTitle.aspx.cs" Inherits="AddTitle" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
    <strong>Add a new Title<br />
    </strong>
    <br />
    Title &nbsp;&nbsp;
    <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox><br />
    <br />
    type &nbsp;&nbsp;
    <asp:TextBox ID="TextBox2" runat="server"></asp:TextBox><br />
    <br />
    pub_id &nbsp;&nbsp;&nbsp;
    <asp:DropDownList ID="DropDownList1" runat="server">
    </asp:DropDownList><br />
    <br />
    price &nbsp;&nbsp;
    <asp:TextBox ID="TextBox4" runat="server"></asp:TextBox><br />
    <br />
    advance &nbsp;&nbsp;
    <asp:TextBox ID="TextBox5" runat="server"></asp:TextBox><br />
    <br />
    royality &nbsp;&nbsp;
    <asp:TextBox ID="TextBox6" runat="server"></asp:TextBox><br />
    <br />
    ytd sales &nbsp;&nbsp;
    <asp:TextBox ID="TextBox7" runat="server"></asp:TextBox><br />
    <br />
    notes &nbsp;&nbsp;
    <asp:TextBox ID="TextBox8" runat="server"></asp:TextBox><br />
    <br />
    <asp:Button ID="Button1" runat="server" Text="Add the Title" OnClick="Button1_Click" />
    &nbsp; &nbsp;&nbsp;
    <asp:Label ID="Label1" runat="server"></asp:Label>
</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