I want to create new gridview in codebehind file asp.net C#. Exactly I want to add such boundfield to the gridview by c# code:
<asp:BoundField DataField="p_type" HeaderText="type" ItemStyle-Width="70px">
<ItemStyle Width="70px"></ItemStyle>
</asp:BoundField>
I crated new gridview with following code:
GridView GridView1 = new GridView();
GridView1.AllowPaging = false;
GridView1.CellPadding = 4;
GridView1.GridLines= GridLines.None;
GridView1.AutoGenerateColumns = false;
And I want to add new boundField to this gridview. How to make that with c# code?
this article explain you how implement in c# code a gridview : http://www.codeproject.com/Articles/13461/how-to-create-columns-dynamically-in-a-grid-view here a sample code to create it: