I want to add dropdownlist to a repeater in asp.net c#
I want to display dropdownlist of boarding points on clicking select seats like redbus.in
how to do that
<asp:Repeater ID="rptItemsInCart"
OnItemDataBound="rptItemsInCart_ItemDataBound" runat="server">
<HeaderTemplate>
<table>
<thead>
<tr>
<th>Service id</th>
<th>Fare</th>
<th>Type</th>
</tr>
<tr>
<asp:Button ID="Button1" runat="server" Text="Button" />
</tr>
</thead>
<tbody>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td><%# Eval("serviceId") %></td>
<td><%# Eval("fare")%></td>
<td><%# Eval("busType")%></td>
</tr>
</ItemTemplate>
<FooterTemplate>
</tbody>
</table>
</FooterTemplate>
</asp:Repeater>