You are on page 1of 7

NAME : AJAY YADAV

CLASS : TYBSCIT DIV : A


ROLL NO. : 547
SUBJECT : ADVANCE WEB
PROGRAMMING
TOPIC : GRID VIEW CONTROL
 What is a GridView control ?
• The Grid View control is used to display the values of a data
source in a table. Each column represents a field, while each
row represents a record. The Grid View control supports the
following features: Binding to data source controls, such as
Sql Data Source.
 Features of the GridView control.
• Auto-generating columns.
• Sorting and paging.
• Template fields for custom layouts.
• Data source controls integration.
 Auto-generating columns.

• Auto-generating columns in a Grid View control is a convenient way


to display data from a data source without manually defining each
column in the Grid View markup. This is especially useful when
dealing with dynamic data sources or when you want to reduce the
amount of manual configuration. Here's a step-by-step guide on how
to enable and use auto-generated columns in an ASP.NET Grid View
control
 Sorting and paging.

• Sorting and paging are important features in a Grid View


control that allow users to organize and navigate through
large sets of data effectively. Here's how to implement
sorting and paging in an ASP.NET Grid View control.
 Template fields for custom layouts.

• Using template fields in a Grid View control allows you to


create custom layouts for individual rows or cells within the
Grid View. This is useful when you want more control over the
appearance and content of your data. Here's how to use template
fields for custom layouts in an ASP.NET Grid View control.
 Data source controls integration.

• Integrating data source controls with a Grid View control in


ASP.NET allows you to easily connect, retrieve, and display data
from various data sources such as databases, XML files, and
object collections. This integration simplifies the process of
binding data to the Grid View. Here's how to integrate data
source controls with a Grid View control.

You might also like