public ActionResult DeleteReceiver(string id) { //删除数据 string strErrText; DDSystem dd = new DDSystem(); if (dd.DeleteReceiver(long.Parse(id), LoginAccountId, LoginStaffName, out strErrText)) { return Json(string.Empty); } else { return Json(strErrText); } }