Answer: DataSource is the property of datagrid to give source name like dataset or datatable.
and DataBind is the method to bind datagrid.
Example:
gridview.DataSource = ds; //ds is the dataset and filled with some data.
gridview.DataBind();
Asked In: Many Interviews |
Alert Moderator