public ActionResult InBillDetailDelete(string ID) { string strResult = string.Empty; bool bResult = InBillDetailService.Delete(ID, out strResult); string msg = bResult ? "删除成功" : "删除失败"; return(Json(JsonMessageHelper.getJsonMessage(bResult, msg, strResult), "text", JsonRequestBehavior.AllowGet)); }