You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iot/projects/Infrastructure/Views/Shared/Details.cshtml

9 lines
333 B

@{
var display = ViewContext.ViewData.ModelMetadata.ModelType.GetDisplayName();
HtmlTitle = "编辑" + display;
var controller = this.ViewContext.RouteData.Values["controller"].ToString();
}
@Html.DisplayForModel()
@section bread{
<li class="breadcrumb-item"><a href="@Url.Action("Index")">@(display)管理</a></li>
}