コード例 #1
0
 public JsonResult GetRegionsByCountry(int CountryID)
 {
     DropDownListsRepository modelRepo = new DropDownListsRepository();
      return Json(modelRepo.GetRegionsByCountry(CountryID).OrderBy(o => o.Name).Select(c => new { ID = c.ID, Name = c.Name }).OrderBy(o => o.Name), JsonRequestBehavior.AllowGet);
 }