DHController.cs 470 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Mvc;
  6. namespace KJH55128_Rec.Controllers
  7. {
  8. public class DHController : Controller
  9. {
  10. /// <summary>
  11. /// 站点导航
  12. /// </summary>
  13. /// <returns></returns>
  14. [Route("about/{name}.html")]
  15. public ActionResult About(string name)
  16. {
  17. ViewBag.name = name;
  18. return View();
  19. }
  20. }
  21. }