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

Auto data binding panel controls

Rate me:
Please Sign up or sign in to vote.
2.00/5 (1 vote)
28 Jun 2007CPOL7 min read 42.3K   461   23  
An article on auto data binding panel controls.
<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>

<%@ Register Assembly="MyControls" Namespace="MyControls" TagPrefix="cc1" %>



<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="form1" runat="server">
    <table cellpadding="0" cellspacing="0"><tr><td></td></tr></table>
    <div>
        <cc1:BindingPanel ID="BindingPanel1" runat="server">
            <cc1:BindingTextBox ID="BindingTextBox1" runat="server" TableName="customer" BoundColumn="customer_name"></cc1:BindingTextBox>
        </cc1:BindingPanel>
    </div>
    </form>
</body>
</html>

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
Software Developer (Senior)
Cyprus Cyprus
I am a senior software engineer with over 8 years experience. Have worked for different international software companies using different technologies and programming languages like: C/C++, lotus script, lotus API, C#, ASP.NET, WCF, MS-SQL, Oracle, Domino Server, JavaScript.

Comments and Discussions