I have Added Column in gridview
How to Load data from the database to the column of the Gridview in windows form Application c#
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Santhosh Kumar JayaramanPosted Aug 20, 2012, 1:57 AM
gv.DataSource=//something;
BoundField nameColumn = new BoundField();
nameColumn.DataField = "FirstName";
nameColumn.HeaderText = "First Name";
gv.Columns.Add(nameColumn);
rashmi kcPosted Aug 21, 2012, 9:00 AM