33 lines
704 B
Plaintext
33 lines
704 B
Plaintext
@using Microsoft.AspNetCore.Localization
|
|
@{
|
|
ViewData["Title"] = "Home Page";
|
|
|
|
}
|
|
|
|
|
|
<div class="text-center">
|
|
<h1 class="display-4">Welcome</h1>
|
|
<p>Learn about <a href="https://docs.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>.</p>
|
|
|
|
<table class="table culture-table">
|
|
<tr>
|
|
<td>Date</td>
|
|
<td>@DateTime.Now.ToLongDateString()</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Currency</td>
|
|
<td>
|
|
@(12345.00.ToString("c"))
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Number</td>
|
|
<td>
|
|
@(123.45m.ToString("F2"))
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
|