Which property must be set within the asp:datagrid tag to manually define columns instead of generating them automatically?

Choose the correct answer

Explanation

To manually bind columns in an asp:datagrid, you must set the AutoGenerateColumns property to false. This disables automatic column creation, allowing you to define each column explicitly. Setting AutoGenerateColumns to true will create columns automatically based on the data source, which prevents manual column definition.

Which property must be set within the asp:datagrid t… — ASP.net | PakQuizHub