aspnetcore/samples/MvcSample.Web/Views/Shared/HelloWorldPartial.cshtml

6 lines
150 B
Plaintext

@using MvcSample.Web.Models
@model User
<strong>Hello @Model.Name from Partial</strong>
<a href="@Url.Action("Edit", "Home")">Edit Something!</a>