0
私は2つのチェックボックスの質問、どのようにC#を使用してユーザが選択した値を取得する任意のアイデアを持っていますか?チェックボックス、ユーザが選択した値を取得
<div class="form-group">
<label for="checkboxes" id="checkbox123" style="text-align:left;color:black">2) How much of the training can you recall?</label>
<div>
<label class="checkbox-inline" for="checkboxes-0">
<input type="checkbox" name="checkboxes" id="checkboxes-03" value="1">
All of it
</label>
<label class="checkbox-inline" for="checkboxes-4">
<input type="checkbox" name="checkboxes" id="checkboxes-43" value="5">
Not at all
</label>
</div>
</div>
<div class="form-group">
<label for="checkboxes" id="checkbox456" style="text-align:left;color:black">2) Are you ok?</label>
<div>
<label class="checkbox-inline" for="checkboxes-0">
<input type="checkbox" name="checkboxes" id="checkboxes-03" value="1">
Yes
</label>
<label class="checkbox-inline" for="checkboxes-4">
<input type="checkbox" name="checkboxes" id="checkboxes-43" value="5">
No
</label>
</div>
</div>
上記のコードは私のチェックボックスコードです。ご案内ありがとうございました。