Details.cshtml
585 Bytes
@model Maps.Entities.StateCommon
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Details</title>
</head>
<body>
<div>
<h4>StateCommon</h4>
<hr />
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.Value)
</dt>
<dd>
@Html.DisplayFor(model => model.Value)
</dd>
</dl>
</div>
<div>
<a asp-action="Edit" asp-route-id="@Model.StateCommonId">Edit</a> |
<a asp-action="Index">Back to List</a>
</div>
</body>
</html>