how would i implement dropdownlist in gridview using c#
Answers were Sorted based on User's Feedback
Answer / indra
<asp:GridView ID="GridView1" AutoGenerateColumns ="false"
Font-Size=Small Font-Names="Verdana" GridLines="None"
runat="server">
<Columns>
<asp:TemplateField HeaderText="Customer name" >
<ItemTemplate>
<asp:DropDown ID="DDcustname"
runat="server"></asp:DropDown>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
Is This Answer Correct ? | 15 Yes | 8 No |
Data reader read and forward only, how is it possible to get 2 tables of data at a time?
What are the parameters that control most of connection pooling behaviours?
What is ado.net connection?
What is method to get XML and schema from Dataset? getXML() and get Schema ()
What is connection in ado.net?
What is namespace in ado.net?
What is the difference between Dataset. clone and Dataset.copy?
What are the different row versions available in table?
What are all features of ADO.Net?
What is XML serialization
What is Pooling? what is data pooling? what is sql pooling?
Compare Data Reader & Dataset in ado.net?