how would i implement dropdownlist in gridview using c#

Answers were Sorted based on User's Feedback



how would i implement dropdownlist in gridview using c#..

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

how would i implement dropdownlist in gridview using c#..

Answer / guest

using item template

Is This Answer Correct ?    9 Yes 4 No

Post New Answer

More ADO.NET Interview Questions

Data reader read and forward only, how is it possible to get 2 tables of data at a time?

0 Answers  


What are the parameters that control most of connection pooling behaviours?

0 Answers  


What is ado.net connection?

0 Answers  


What is method to get XML and schema from Dataset? getXML() and get Schema ()

0 Answers  


What is connection in ado.net?

0 Answers  


What is namespace in ado.net?

0 Answers  


What is the difference between Dataset. clone and Dataset.copy?

0 Answers  


What are the different row versions available in table?

0 Answers  


What are all features of ADO.Net?

0 Answers  


What is XML serialization

0 Answers   Digital GlobalSoft,


What is Pooling? what is data pooling? what is sql pooling?

3 Answers   TCS,


Compare Data Reader & Dataset in ado.net?

0 Answers   MaxSolPro,


Categories