In the code below, I have tried to retrieve all the checkboxes but I can not bring anything, I would not like to put ID, but retrieve countless selected checkboxes, what can I do? I just put 2 as an example: ( Code Behind )
<div class="form-group">
<label for="teste" class="col-sm-2 control-label">teste</label>
<div class="col-xs-11 col-sm-6">
<asp:TextBox ID="teste" class="form-control" runat="server"></asp:TextBox>
</div>
<div class="col-xs-1 col-sm-1">
<asp:CheckBox ID="CheckMed" runat="server" />
</div>
<div class="col-xs-1 col-sm-1">
<asp:CheckBox ID="CheckSun" runat="server" />
</div>
</div>