HomeController.cs 456 B

12345678910111213141516171819
  1. using Microsoft.AspNetCore.Mvc;
  2. using System.Diagnostics;
  3. using WebApplicationSample.Models;
  4. namespace WebApplicationSample.Controllers
  5. {
  6. public class HomeController : Controller
  7. {
  8. public IActionResult Index()
  9. {
  10. return View();
  11. }
  12. public IActionResult Error()
  13. {
  14. return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
  15. }
  16. }
  17. }