Ver Mensaje Individual
  #7 (permalink)  
Antiguo 03/12/2012, 02:54
maialenlopez
 
Fecha de Ingreso: abril-2012
Mensajes: 449
Antigüedad: 12 años
Puntos: 7
Respuesta: leer datos en .net de un xml

Hola;

Al final lo he echo utilizando XmlReader.
Primeramente importando System.xml
Código vb.net:
Ver original
  1. Using reader As XmlReader = XmlReader.Create("c:\archivo.xml")
  2.    If reader.IsStartElement() then
  3.       If reader.Name = "nombre_etiqueta" then
  4.         //ir leyendo los datos que contiene el xml
  5.       End If
  6.    End If
  7. En Using

Gracias
__________________
Gracias por todo;

Un saludo