I need some serious help here.
I have a Grid View in ascx file. Simple Like this:
<asp:GridView ID="grdFamily" runat="server">
</asp:GridView>
First:
I need to add columns dynamically to this GridView. I am pulling how many and what columns I need from table.
e.g A B C D E F
Second.
Then I need to add rows filled with control under these columns.
Again I have a table from which I will be pulling what type of control are these. Then I need to bind these controls.
e.g 1 mean text box, 2 means drop down etc.
e.g. I need to fill drop down list with data
Third.
Then I need to bind the GridView with a dataset.
------------------In simple, every thing is dynamic.
Can you please help me?
Start Free Trial