Anchor tag in form label using Html.LabelFor in MVC3
I would like to do something like
<label for="AgreedToTherms"> I agree to the <a href="therms-and-conditions">Therms and conditions</a> </label>
Is this allowed by html standards? Using the standard Html helper in a view
@Html.LabelFor(model => model.AgreedToTherms)
I tried using html in the shortcut, but this text gets html encoding
+6