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
What is the difference between executenonquery () and executescalar ()?
What does ado stand for?
How to creating a SqlCommand Object?
Explain the dataadapter class in ado.net?
What is the difference between Optimistic and Pessimistic locking?
What is the significance of CommandBehavior.CloseConnection ?
What is the DataTableCollection?
What are the advantages of using datalist?
What is the hierarchy of data in databases?
How to connect and retrieve data from database using dataset
Which provider is used to connect ms access, oracle, etc…?
What is microsoft ado?
How do you find the count of records in a dataset?
Define Execute Scalar?
What is the difference between ado.net and oledb?