Click here to Skip to main content
16,011,883 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hey how to add dropdownlist in the gridview ,as gridview is connected to the database.

and want to import two list value in dropdown....1.Paid.....2.Unpaid.
Posted

Just
use ItemTemplate use in gridview.

XML
<asp:TemplateField>
<ItemTemplate>
<asp:DropDownList ID="DropDownList1" runat="server"></asp:DropDownList>
</ItemTemplate>
</asp:TemplateField>
 
Share this answer
 
 
Share this answer
 
 
Share this answer
 
Refer:
Dropdownlist inside the Gridview in ASP.NET[^]

..and more results here[^]
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900