Hi,
I am assuming you are asking about our Grid control (We do not provide support for the standard ASP.NET GridView control). If you use our Grid control, you will need to do this:
Code: C#
Grid1.DataSource = SqlDataSource1.Select(DataSourceSelectArguments.Empty);
Grid1.DataBind();
Also our Grid
does not automatically generate columns from the data source. So you
must define the columns. Please see this topic for step by step guide on how to get started with our Grid:
http://doc.essentialobjects.com/library/1/grid/start.aspxThanks!