How to add an attribute to the Table generated by the DataGrid?

VB.NET

'Bind DataGrid

DataGrid1.Attributes.Add ("Description", "This table displays Product Description" )

C#

//Bind DataGrid

DataGrid1.Attributes.Add ("Description", "This table displays Product Description" );

Note : By doing a ViewSource you can find the Attribute Description for the Table that displays the DataGrid data