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

            try
            {
                client = new HallazgoWS.HallazgoClient();
                client.WSRegistrarHallazgo(objInformeDC.InformeFinCicloId, popup_textoDescripcionHallazgoRegistrar.Text.ToString().Trim(), objInformeDC.PeriodoId);
                grdHallazgosDataBind();
            }
            catch (Exception ex)
            {
                MostrarAlert("NUEVO HALLAZGO: " + ex.Message);
            }
            finally
            {
                client = null;
            }
        }