标签: asp.net-mvc
[Route("employee/released/{year:regex(\\d{4})}/{month:regex(\\d{2}):range(1,12)}")] public ActionResult ByReleaseDate(int year,int month) { return Content(year+"/"+month); }