public JsonResult viewListAsset(string prd) { string bln = prd.Substring(0, 2); string thn = prd.Substring(3, 4); int iBln = Convert.ToInt32(bln); int iThn = Convert.ToInt32(thn); WipRepository FixedAsset = new WipRepository(); return(Json(FixedAsset.viewListAsset(iThn, iBln), JsonRequestBehavior.AllowGet)); }