public static bool EliminarRedSocial(string id) { HomePageBL homePageBL = new HomePageBL(); bool ok = false; if (id == "") { ok = false; } else { ok = homePageBL.deleteRS(Convert.ToInt32(id)); } return(ok); }