I have the view that contains the checkbox and Submit button as shown below.\[code\]@using (Html.BeginForm()) { <fieldset> <legend style="font-size: 100%; font-weight: normal">Delete</legend> <p> Are you sure you want to delete?</p> @foreach (string resource in resources) { if (resource != "") { <input type="checkbox" name="Resources" title="@resource" value="http://stackoverflow.com/questions/14479995/@resource" checked="checked"/>@resource <br /> } } <br /> @Html.HiddenFor(m => m.AttendeeListString) @Html.HiddenFor(m => m.ResourceListString) <span class="desc-text"> <input type="submit" value="http://stackoverflow.com/questions/14479995/Yes" id="btnYes" /> </span> <span class="desc-text"> <input type="submit" value="http://stackoverflow.com/questions/14479995/No" id="btnNo" /> </span> </fieldset> }\[/code\]Now how can i access the checkbox value in controller?Note : I have lot more information that need to be send to Controller when i clicked on submit button... Can anybody suggest some solution....