MusicController.cs 351 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Mvc;
  6. namespace NEducation.Controllers
  7. {
  8. public class MusicController : Controller
  9. {
  10. // GET: Music
  11. public ActionResult Index()
  12. {
  13. Session["courseType"] = "4";
  14. return View();
  15. }
  16. }
  17. }