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();
Found interesting? Add this to: