I have a checkbox and button:
@using(Html.BeginForm()) {
I have tried out with input tag and it works as shown below:
Remember Me?
In the controller, compare the string value and convert its to a boolean.
bool rmbMe = (formdata["chkRmb"] ?? "").Equals("on", StringComparison.CurrentCultureIgnoreCase);