FeedBackController.cs 431 B

123456789101112131415161718192021
  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 FeedBackController : Controller
  9. {
  10. /// <summary>
  11. /// 页面反馈
  12. /// </summary>
  13. /// <returns></returns>
  14. [Route("feedback.html")]
  15. public ActionResult FeedBack()
  16. {
  17. return View();
  18. }
  19. }
  20. }