using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace KJH55128_Rec.Controllers { public class DHController : Controller { /// /// 站点导航 /// /// [Route("about/{name}.html")] public ActionResult About(string name) { ViewBag.name = name; return View(); } } }