Finished 'Attribute Routing in ASP.NET MVC App'

master
jason.zhu 2021-06-16 14:50:06 +10:00
parent 14ccb1a525
commit 0eae1cbf18
1 changed files with 1 additions and 0 deletions

View File

@ -33,6 +33,7 @@ namespace AttributeRoutingDemoInMVC.Controllers
} }
[HttpGet] [HttpGet]
[Route("students/{studentID}/courses")]
public ActionResult GetStudentCourses(int studentID) public ActionResult GetStudentCourses(int studentID)
{ {
List<string> CourseList = new List<string>(); List<string> CourseList = new List<string>();