コード例 #1
0
ファイル: MusicController.cs プロジェクト: CooperZA/MIS324
 // GET: Music Filtered by color
 public ActionResult Browse(int id)
 {
     //if (id == null) return RedirectToAction("index");
     ViewBag.message = "Browse";
     return(View("index", musicRepo.GetMusicByStyle(id)));
 }