cs11dotnet7/vscode/PracticalApps/Northwind.Web/Pages/index.cshtml
2022-03-13 16:17:01 +00:00

29 lines
652 B
Plaintext

@page
@functions
{
public string? DayName { get; set; }
public void OnGet()
{
ViewData["Title"] = "Northwind B2B";
Model.DayName = DateTime.Now.ToString("dddd");
}
}
<div class="jumbotron">
<h1 class="display-3">Welcome to Northwind B2B</h1>
<p class="lead">We supply products to our customers.</p>
<hr />
<p>It's @Model.DayName! Our customers include restaurants, hotels, and cruise lines.</p>
<p>
<a class="btn btn-primary" href="suppliers">
Learn more about our suppliers
</a>
</p>
<p>
<a class="btn btn-primary" href="packtfeatures/employees">
Contact our employees
</a>
</p>
</div>