mirror of
https://github.com/rudollee/LearningMVC.git
synced 2025-06-07 16:06:21 +00:00
29 lines
601 B
Plaintext
29 lines
601 B
Plaintext
@model HelperMethods.Models.Person
|
|
|
|
@{
|
|
ViewBag.Title = "DisplayPerson";
|
|
Layout = "/Views/Shared/_Layout.cshtml";
|
|
}
|
|
|
|
<h2>DisplayPerson</h2>
|
|
<div class="dateElem">
|
|
@Html.Label("PersonId")
|
|
@Html.Display("PersonId")
|
|
</div>
|
|
<div class="dateElem">
|
|
@Html.Label("FirstName")
|
|
@Html.Display("FirstName")
|
|
</div>
|
|
<div class="dateElem">
|
|
@Html.LabelFor(m => m.LastName)
|
|
@Html.DisplayFor(m => m.LastName)
|
|
</div>
|
|
<div class="dateElem">
|
|
@Html.LabelFor(m => m.Role)
|
|
@Html.DisplayFor(m => m.Role)
|
|
</div>
|
|
<div class="dateElem">
|
|
@Html.LabelFor(m => m.BirthDate)
|
|
@Html.DisplayFor(m => m.BirthDate)
|
|
</div>
|