This is a discussion on ASP.NET Data Controls within the ASP and ASP.NET Programming forums, part of the Web Development category; I am a newbie to Asp.net development i plan to use Data Bound controls for displaying informations. I have ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| |||
| |||
| I am a newbie to Asp.net development i plan to use Data Bound controls for displaying informations. I have tried data-bound controls such as the DataGrid, DataList, GridView, FormView, DetailsView, and Repeater Controls for simpler usage but this requirment is an extensive one.so i want to get a clear picture of the controls which i am going to use. can anybody suggest a best solution.... thanks in advance..., Last edited by Venkat : 08-04-2007 at 01:23 AM. |
|
#2
| |||
| |||
| hi venkat, can i know what is the purpose of using data bound controls in a Web application.
__________________ The OXYGEN Delivers edgy, intelligent Technology to all... |
|
#3
| |||
| |||
| Data-bound Web server controls are controls that can be bound to a data source control to make it easy to display and modify data in your Web application. Data-bound Web server controls are composite controls that combine other ASP.NET Web controls, such as Label and TextBox controls, into a single layout. For example, a data-bound control such as a DetailsView control can bind to a set of results such as a table of employees containing each employee's name, address, job title, and so on. Within the DetailsView control, you can bind Label controls to a single data values such as the name or address field to create the data layout in the page. In addition to enabling you to bind the control to a set of data results, data-bound controls enable you to customize the layout of the control using templates. They also provide a convenient model for handling and canceling events. |
|
#4
| |||
| |||
| how data Web server controls bind to data as well as the data-bound controls that are included with ASP.NET?
__________________ The OXYGEN Delivers edgy, intelligent Technology to all... |
|
#5
| |||
| |||
| Binding a Data-bound Web Server Control to Data You can work with a data-bound control by binding it to a data source control such as an ObjectDataSource or SqlDataSource control. The data source control connects to a data source such as a database or middle-tier object and then retrieves or updates data. The data-bound control can then use this data. To perform the binding, you set the data-bound control's DataSourceID property to point to a data source control. When a data-bound control is bound to a data source control, little or no additional code is required for data operations, because the data-bound control can automatically take advantage of the data services provided by the data source control. |
|
#6
| |||
| |||
| Can anybody tell me more information about other data source controls?
__________________ The OXYGEN Delivers edgy, intelligent Technology to all... |
|
#7
| |||
| |||
| DetailsView Control The DetailsView control renders a single record at a time as a table and provides the capability to page through multiple records, as well as to insert, update, and delete records. The DetailsView control is often used in master-detail scenarios where the selected record in a master control such as a GridView control determines the record displayed by the DetailsView control.
__________________ J Suresh Kumar Google Hacks ![]() |
|
#8
| |||
| |||
| FormView Control The FormView control renders a single record at a time from a data source and provides the capability to page through multiple records, as well as to insert, update, and delete records, similar to the DetailsView control. However, the difference between the FormView and the DetailsView controls is that the DetailsView control uses a table-based layout where each field of the data record is displayed as a row in the control. In contrast, the FormView control does not specify a pre-defined layout for displaying a record. Instead, you create templates that contain controls to display individual fields from the record. The template contains the formatting, controls, and binding expressions used to lay out the form. |
|
#9
| |||
| |||
| Repeater Control The Repeater control renders a read-only list from a set of records returned from a data source. Like the FormView control, the Repeater control does not specify a built-in layout. Instead you create the layout for the Repeater control using templates.
__________________ J Suresh Kumar Google Hacks ![]() |
|
#10
| |||
| |||
| we have DataList Control also.. The DataList control renders data as table and enables you to display data records in different layouts, such as ordering them in columns or rows. You can configure the DataList control to enable users to edit or delete a record in the table. (The DataList control does not take advantage of the capabilities of data source controls for modifying data; you must supply this code yourself.) The DataList control differs from the Repeater control in that the DataList control explicitly places items in an HTML table, where as the Repeater control does not. |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| silverlight controls for .net | stevejhon | ASP and ASP.NET Programming | 1 | 03-25-2009 10:31 AM |
| silverlight controls for .net | stevejhon | ASP and ASP.NET Programming | 0 | 03-23-2009 01:55 AM |
| How can we Dynamically create web controls | Kirubhananth | ASP and ASP.NET Programming | 3 | 03-14-2008 09:00 PM |
| WebParts controls | S.Vinothkumar | ASP and ASP.NET Programming | 5 | 11-16-2007 02:06 AM |
| Asp.net controls not supported by Ajax? | Gopisoft | ASP and ASP.NET Programming | 0 | 07-16-2007 11:22 PM |
Our Partners |