一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

Mastering ASP.Net DataBinding

时间:2008-01-18 编辑:简简单单 来源:一聚教程网

begin:
Mastering ASP.Net DataBinding
Karl Seguin ?karlseguin@hotmail.com
Table of Contents
Introduction
The Sample Program
Understanding DataItem
Formatting
Inline
OnItemDataBound
OnItemCreated
Nested Binding
Inline
OnItemDataBound
Handling Events
Download
This article is available at Code Project. Check it out to make comments, discuss or rate the article
I'd like to thank Jean-Claude Manoli for developing his C# Code format, which i used in writing this tutorial.
Introduction
Questions regarding databinding, in one form or another, are probably the most asked in the aspnet newsgroups. Its clear everyone loves the idea of databinding but that more advanced functionality, such as event handling, conditional formatting and fine-tuning, aren't straightforward. The goal of this tutorial is shed light on some of the more common and frequently asked questions about the capabilities of databinding.
The Sample Program
Throughout this tutorial we'll use two separate data sources. The first will be your every-day dataset, the other will be a strongly-typed custom collection containing strongly-typed objects.
Our dataset will contain two tables, Customers and Orders:
Customer Structure Order Structure
Name Type Description Name Type Description
CustomerId1 Int32 Unique customer identifier OrderId Int32 Unique order identifier
Name String Name of the customer CustomerId1 Int32 Identifier of the custom who placed the order
Zip String Customer's primary ZIP or Portal code Ordered DateTime Date the order was placed on
Enabled Boolean Whether the customer is currently active/enabled Amount Decimal Dollar value of the order
1A DataRelation exists between the Customer.CustomerId and Order.CustomerId columns.
Our business entities will consist of an Owner and a Pet class:
Owner Structure Pets Structure

热门栏目