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