Can you please help me how to get the multiple values of checkbox.
Code:
@Html.Label("Revision of Records:")<br /> @Html.CheckBox("Change Address", new { @class = "appType", @id = "ChangeAddress", @onclick = "clkChangeAddress()", @name = "nRevRecords" }) Change Address<br /> @Html.CheckBox("Change Civil Status", new { @class = "appType", @id = "ChangeCivilStatus", @onclick = "clkChangeCivilStatus()", @name = "nRevRecords" }) Change Civil Status<br /> @Html.CheckBox("Change Name", new { @class = "appType", @id = "ChangeName", @onclick = "clkChangeName()", @name = "nRevRecords" }) Change Name<br /> @Html.CheckBox("Change Date of Birth", new { @class = "appType", @id = "ChangeDateBirth", @onclick = "clkChangeDateBirth()", @name = "nRevRecords" }) Change Date of Birth<br /> @Html.CheckBox("Others", new { id = "ChkBoxOthers", @class = "appType", @onclick = "clkOthers()" }) Others <br />
Comment