1
In the code below, I have already tried to recover all the checkbox but I can’t bring anything, I would not like to put the ID, but recover numerous checkbox selected, how can I do? I put only 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>
You want this on the client or server?
– Jéf Bueno
Would be in the codebehind
– rock.ownar