Articles in this section
Category / Section

How to bind the GridControl to a .Net 2.0 DataSource control?

1 min read

 

This can be achieved in two different ways.

  • Set the 'DataSourceID' property of the Grid using the Property Editor to any of the DataSource control's ID. Please refer the below code snippet:

[aspx]

$sfwg:GridGroupingControl ID="gridgroupingcontrol1" runat="server" DataMember="defaultview" DataSourceID="accessdatasource1">

$/sfwg:gridgroupingcontrol>

  • Specify the datasource property of the GridControl through code. Please refer the below code snippet which illustrates this:

C#

this.GridGroupingControl1.DataSource = this.AccessDataSource1;

VB

Me.GridGroupingControl1.DataSource = this.AccessDataSource1

Sample:

http://help.syncfusion.com/support/samples/kb/Grid.Web/6.1.0.34/GGCDatabinding/Databinding.zip

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied