August 2018
Intermediate to advanced
298 pages
5h 33m
English
Scenario
Your fields for your web page is ready. Now, you're asked to make use of a checkbox for the age option instead of entering the age, as shown:

Aim
Make use of a checkbox for the age option instead of entering the age.
Steps for completion
@model Activity3C1.Models.Person@if (ViewBag.Message != null){ <b>@ViewBag.Message</b>}@{}@using (Html.BeginForm("ValidateAge", "Home",FormMethod.Post)){ <table> <tr> <td>@Html.LabelFor(Model => Model.Name) </td> <td>@Html.TextBoxFor(Model => Model.Name) </td> </tr>……Read now
Unlock full access