private void Carga_Editar() { try { WSGestion.WSGestion wsgest = new WSGestion.WSGestion(); wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs"); WSGestion.MOD_Visita obj = new WSGestion.MOD_Visita(); obj = wsgest.SEL_GRID_BY_ID_Visita(codigo_seleccionado, centro); txt_codigo.Value = obj.VCE_id_visita_centro_visita.ToString(); DateTime Fecha = Convert.ToDateTime(obj.VCE_fecha); Fecha_Formato = Fecha.ToString("MM/dd/yyyy hh:mm:ss tt"); txt_cea_codigo.Value = obj.CEA_id_centro_atencion.ToString(); txt_cea_nombre.Value = obj.CEA_nombre; txt_nombre_mascota.Value = obj.MAS_nombre; } catch (Exception exc) { WSGestion.WSGestion wsgest = new WSGestion.WSGestion(); wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs"); Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Codigo_Select"] = "0"; Alert_Mensaje.Attributes["class"] = "alert alert-danger"; mensaje_alerta = exc.ToString(); titulo_mensaje_alerta = "Error: "; Alert_Mensaje.Visible = true; } }