OurDemoController.cs 321 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Mvc;
  6. namespace BuildOurOwnBabylonJSServer.Controllers
  7. {
  8. public class OurDemoController : Controller
  9. {
  10. public ActionResult Show(string demo)
  11. {
  12. return View(demo);
  13. }
  14. }
  15. }