I need to create two radio buttons using RAZOR in MVC3 C#.
Shown below is an example of the intended final result:
<input type="radio" name="set-accessibility-on" value="on">Accessibility On<br>
<input type="radio" name="set-accessibility-off" value="off">Accessibility Off
set-accessibility-on should call an ActionResult SetAccessibilityOn()
and
set-accessibility-off should call an ActionResult SetAccessibilityOff()
How can I do this?
change the markup like this: