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/Add.cshtml

12 lines
394 B

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