Esempio n. 1
0
 private void Carga_Centro_Nombre(int codigo)
 {
     try
     {
         WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
         wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
         string Nombre = wsgest.SP_SEL_TXT_CENTRO_ATENCION_NOMBRE(codigo);
         txt_cea_nombre.Value = Nombre;
     }
     catch (Exception exc)
     {
         Alert_Mensaje.Attributes["class"] = "alert alert-danger";
         mensaje_alerta = exc.ToString();
         titulo_mensaje_alerta = "Error: ";
         Alert_Mensaje.Visible = true;
     }
 }