TestController.cs 400 B

1234567891011121314151617181920212223
  1. 
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Web;
  6. using System.Web.Mvc;
  7. namespace M55128_rec.Controllers
  8. {
  9. public class TestController : Controller
  10. {
  11. // GET: Test
  12. //[Route("{c?}")]
  13. public ActionResult Index(string c)
  14. {
  15. // TestBLL.Qthreelist();
  16. return View();
  17. }
  18. }
  19. }