开发者

How to get checkboxid which is placed inside the repeater control from the codebehind side?

开发者 https://www.devze.com 2023-02-20 18:10 出处:网络
Let us assume sample.aspx is a page this page contails the following Repeater <asp:Repeater ID=\"Repeater1\" runat=\"server\">

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

0

精彩评论

暂无评论...
验证码 换一张
取 消