1
How I use the mvc helper to create a chekbox and with its name attached to the checkbox. And if there’s any way I can put the name of the checkbox on the left or right. I did so and it didn’t work:
<td>@Html.CheckBox("Acesso Remoto")</td>
I also did so and nothing
<td>@Html.CheckBox("Acesso Remoto", "Acesso Remoto")</td>
because then it just ta creating the <input type="checkbox"... and do not put separate name, put Accessoremoto
– user6026