Index.cshtml 430 B

1234567891011121314
  1. @page
  2. @model IndexModel
  3. @{
  4. ViewData["Title"] = "Home page";
  5. }
  6. <div class="text-center">
  7. <h1 class="display-4">Welcome</h1>
  8. <p>Learn about <a href="https://learn.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>.</p>
  9. @foreach (var forecast in (IEnumerable<WeatherForecast>)ViewData["WeatherForecastData"]!)
  10. {
  11. <p>The forecast for @forecast.Date is @forecast.Summary!</p>
  12. }
  13. </div>