HomeController.cs 1010 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System.Diagnostics;
  2. using Microsoft.AspNetCore.Mvc;
  3. using CZKJ.GBRS2.Web.Models;
  4. using Microsoft.AspNetCore.Hosting;
  5. using System.IO;
  6. namespace CZKJ.GBRS2.Web.Controllers
  7. {
  8. public class HomeController : Controller
  9. {
  10. public IActionResult Index([FromServices] IHostingEnvironment env)
  11. {
  12. var path = Path.Combine(env.WebRootPath,"index.html");
  13. var fileStream = new FileStream(path, FileMode.Open, FileAccess.Read);
  14. return File(fileStream, "text/html");
  15. }
  16. public IActionResult About()
  17. {
  18. ViewData["Message"] = "Your application description page.";
  19. return View();
  20. }
  21. public IActionResult Contact()
  22. {
  23. ViewData["Message"] = "Your contact page.";
  24. return View();
  25. }
  26. public IActionResult Error()
  27. {
  28. return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
  29. }
  30. }
  31. }