Gets or sets a value indicating whether bound fields are automatically created for each field in the data source.
Documentation for this section has not yet been entered.
When the GridView.AutoGenerateColumns property is set to true, an System.Web.UI.WebControls.AutoGeneratedField object is automatically created for each field in the data source. Each field is then displayed as a column in the System.Web.UI.WebControls.GridView control in the order that the fields appear in the data source. This option provides a convenient way to display every field in the data source; however, you have limited control of how an automatically generated column field is displayed or behaves.
Instead of letting the System.Web.UI.WebControls.GridView control automatically generate the column fields, you can manually define the column fields by setting the GridView.AutoGenerateColumns property to false and then creating a custom Columns collection. In addition to bound column fields, you can also display a button column field, a check box column field, a command field, a hyperlink column field, an image field, or a column field based on your own custom-defined template.
You can also combine explicitly declared column fields with automatically generated column fields. When both are used, explicitly declared column fields are rendered first, followed by the automatically generated column fields. Automatically generated bound column fields are not added to the GridView.Columns collection. For more information, see GridView.Columns.
If you set this property to true and set the DataBoundControl.ItemType property to a model type, System.Web.DynamicData.DynamicField controls are generated. If you do not set the DataBoundControl.ItemType property, System.Web.UI.WebControls.BoundField controls are generated. If you do not want System.Web.DynamicData.DynamicField controls, you have the following options:
Set the GridView.ColumnsGenerator property to null in the Page_Load event handler. In that case, System.Web.UI.WebControls.BoundField controls are generated.
Write custom code to automatically generate fields by creating and assigning your own GridView.ColumnsGenerator class and assigning an instance of it to the control.
Set GridView.AutoGenerateColumns to false. In that case, no fields are generated, and you must manually specify fields using controls such as System.Web.UI.WebControls.BoundField or System.Web.UI.WebControls.ImageField.
Do not set the DataBoundControl.ItemType property. In that case, System.Web.UI.WebControls.BoundField controls are generated.