public void btn_EliminarPlaya_Click(object sender, EventArgs e) { PlayaBC playa = new PlayaBC(); if (playa.Eliminar(int.Parse(hf_idPlaya.Value))) { ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "modal", "alert('Playa eliminada exitosamente');", true); } else { ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "modal", "alert('Ocurrió un error al eliminar zona. Revise si tiene otros datos asociados');", true); } ObtenerPlaya(true); }