Hello My Project include dataGridView Control, and i change the property: gridview1.columns.DataPropertyName at run time Now, i need rebind my gridView, how i do this. in asp.net is simple gridView1.DataBind(), bun how in c#.
i try to do this:
this.gridview1.DataSource = "MyDataSource"
this.gridview1.refresh()
and it's not working..
Thanks..