I have a DataSet on my .net client side that I want to display in a GridView. I know the syntax, but I cannot display it. Could you tell me my mistake?
System.Windows.Forms.DataGridView myGrid = new DataGridView(); myGrid.DataSource = xmlResponse.Tables[0];
I know that at this point I should bind my DataSet as:
myGrid.DataBind();
but I can not find this attribute in C #! All I have is DataBindings and DataBindingCompelete .
source share