using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace NEducation.Controllers { public class MusicController : Controller { // GET: Music public ActionResult Index() { Session["courseType"] = "4"; return View(); } } }