how would i implement dropdownlist in gridview using c#
Answer Posted / 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 |
Post New Answer View All Answers
Describe ado.net object model in detail.
What are the essential features of ado.net?
What is the use of sqldatareader class?
How do you update a dataset in ado.net?
What are the difference between readonly vs. Const?
What providers does Ado.net uses?
What is meant by executenonquery?
Which one of the objects is a high-level abstraction of the connection and command objects in ado.net?
What is a serialized object?
What are the different ado.net namespaces are available in .net?
What is sql command in ado net?
What is openquery?
What is the executescalar method?
Is entity framework better than ado.net?
What is connection pooling and what is the maximum pool size in ado.net connection string?