protected void btn_guardar_ServerClick(object sender, EventArgs e) { try { if (FormAccion == "Agregar") { WSGestion.WSGestion wsgest = new WSGestion.WSGestion(); wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs"); WSGestion.MOD_Categoria_Articulo obj = new WSGestion.MOD_Categoria_Articulo(); obj.CAT_descripcion = txt_nombre.Value; obj.CAT_id_centro_atencion = Convert.ToInt32(txt_cea_codigo.Value); obj.CAT_id_categoria_articulo= Convert.ToInt32(txt_codigo.Value); wsgest.CRE_Categoria_Articulo(obj); Response.Redirect("frm_Grid_Categoria_Articulo.aspx"); } if (FormAccion == "Editar") { WSGestion.WSGestion wsgest = new WSGestion.WSGestion(); wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs"); WSGestion.MOD_Categoria_Articulo obj = new WSGestion.MOD_Categoria_Articulo(); obj.CAT_descripcion = txt_nombre.Value; obj.CAT_id_centro_atencion = Convert.ToInt32(txt_cea_codigo.Value); obj.CAT_id_categoria_articulo = Convert.ToInt32(txt_codigo.Value); wsgest.UPD_Categoria_Articulo(obj); Response.Redirect("frm_Grid_Categoria_Articulo.aspx"); } } catch (Exception exc) { Alert_Mensaje.Attributes["class"] = "alert alert-danger"; mensaje_alerta = exc.ToString(); titulo_mensaje_alerta = "Error: "; Alert_Mensaje.Visible = true; } }