0

Let us assume sample.aspx is a page this page contails the following Repeater

<asp:Repeater ID="Repeater1" runat="server">
 <ItemTemplate>
  <tr><td>
   <asp:CheckBox ID="CheckBox1" runat="server" Text='<%# container.dataitem("CUISINENAME")%>' />
  </td></tr>    
 </ItemTemplate>                       
</asp:Repeater>

My question is "while clicking the submit button in server side, i have to find the checkboxid which is placed inside the Repeater control. Any one help me Regarding this ?

Prisoner
  • 27,391
  • 11
  • 73
  • 102

1 Answers1

1

How to get all values of check boxes on button click asp.net

Community
  • 1
  • 1
asawyer
  • 17,642
  • 8
  • 59
  • 87