public ActionResult GetCategoryById(string key, int id) { var obj = key != Keyapi ? new CategoryItem() : _da.GetCategoryById(id); return(Json(obj, JsonRequestBehavior.AllowGet)); }
// bind data vào text box public ActionResult GetCategoryById(int cateId) { var lstCategory = _categoryDa.GetCategoryById(cateId); return(Json(lstCategory, JsonRequestBehavior.AllowGet)); }