Example #1
0
        protected void popup_buttonEditarHallazgo_Click(object sender, EventArgs e)
        {
            HallazgoWS.HallazgoClient client = null;

            try
            {
                client = new HallazgoWS.HallazgoClient();
                client.WSEditarHallazgo(Convert.ToInt32(hiddenAE2.Value), objInformeDC.InformeFinCicloId, popup_textoDescripcionHallazgoEditar.Text.ToString().Trim());
                grdHallazgosDataBind();
            }
            catch (Exception ex)
            {
                MostrarAlert("EDITAR HALLAZGO: " + ex.Message);
            }
            finally
            {
                client = null;
            }
        }