2022-09-26 04:05:23 +03:00
|
|
|
@using Microsoft.AspNetCore.Localization
|
|
|
|
@{
|
2022-09-19 05:50:15 +03:00
|
|
|
ViewData["Title"] = "Home Page";
|
2022-09-26 04:05:23 +03:00
|
|
|
|
2022-09-19 05:50:15 +03:00
|
|
|
}
|
|
|
|
|
2022-09-26 04:05:23 +03:00
|
|
|
|
2022-09-19 05:50:15 +03:00
|
|
|
<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>
|
2022-09-26 04:05:23 +03:00
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
|