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

6 lines
157 B
Plaintext

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