I'm trying to create this html code:
<input id="RememberMe" type="checkbox" name="RememberMe" />
<label for="RememberMe">
<span></span>
Remmember me.
</label>
with mvc tools. So I'm wrote:
@Html.CheckBoxFor(m => m.RememberMe)
@Html.LabelFor(m => m.RememberMe)
But this not creating the element inside the label.
How I'm can use those mvc tools, without losing this span?
thank you!
Is that possible?