August 2010
Intermediate to advanced
1224 pages
34h 17m
English
Although the general concepts remain the same, data-binding web-based controls is a slightly different game than in the Windows forms or WPF world. The first obvious difference is that data sources for web forms are implemented by data-source controls in the System.Web.UI.WebControls namespace; there is no concept of the Data Sources window with web applications. Because of this, instead of starting with a data source, you instead need to start with a data control and then work to attach that control to a data source.
There are five primary controls you work with in a web application to deliver data-bound functionality:
• GridView Control—Provides a tabular presentation similar to the DataGridView ...