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 开发者_Go百科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 ?
How to get all values of check boxes on button click asp.net
精彩评论