using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace KJH55128_Rec.Controllers { public class FeedBackController : Controller { /// /// 页面反馈 /// /// [Route("feedback.html")] public ActionResult FeedBack() { return View(); } } }