what is the best way to save data from multiple checkboxes ?? if i have 50 , 60 checkboxes
Is it reasonable to set up a column of 50 or 60 checkboxes for ٍsaving value for each question separately ? and presumably there are questions that have not responded what should i do ??
<div class="form-group">
<div class="form-group">
<label class="control-label">
Moderate
</label>
<asp:CheckBox ID="CheckBox2" runat="server" class="form-control" />
</div>
<div class="form-group">
<label class="control-label">
Heavy
</label>
<asp:CheckBox ID="CheckBox3" runat="server" class="form-control" />
</div>
<div class="form-group">
<label class="control-label">
Y
</label>
<asp:CheckBox ID="CheckBox4"runat="server" class="form-control" />
</div>
<div class="form-group">
<label class="control-label">
N
</label>
<asp:CheckBox ID="CheckBox5" runat="server" class="form-control" />
</div>
and so on ...