mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2025-12-06 05:32:03 +01:00
29 lines
652 B
Plaintext
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>
|