@using MvcSample.Web.Models @using Microsoft.AspNet.Mvc.ModelBinding @model User @{ ViewBag.Title = (Model == null) ? "Create Page" : "Edit Page"; if (ViewBag.Gift == null) { ViewBag.Gift = "nothing"; } }
@typeName has description '@description' and contains
| @Html.TextBox("Name") | |
| @Html.DropDownList("Address", "Select an Address") | |
|
@Html.DropDownListFor(model => model.Age, (IEnumerable |
|
| @Html.TextArea("About", "You can explain about your hobbies, work etc.", 5, 40, htmlAttributes: new { style = "font-weight:bold" }) | |