示例#1
0
 // 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)));
 }