public ActionResult GetFee(ApplicationHeaderInfo pInfo, App_Detail_PLB02_CGD_Info pDetail) { try { List <AppFeeFixInfo> _lstFeeFix = Call_Fee.CallFee_B02(pDetail); ViewBag.LstFeeFix = _lstFeeFix; } catch (Exception ex) { Logger.LogException(ex); } var PartialTableListFees = AppsCommon.RenderRazorViewToString(this.ControllerContext, "~/Areas/Patent/Views/Shared/_PartialTableListFees.cshtml"); var json = Json(new { success = 1, PartialTableListFees }); return(json); //return PartialView("~/Areas/Patent/Views/A01/_PartialTableListFees.cshtml"); }