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