tengo en vb net declarado un xmldocument con esto puedo accesar desde cualquier lado para ir añidiendo los elementos que necesito.
Código PHP:
Private Doc As New XmlDocument()
private Sub crea_ejemplo()
Dim dec As XmlDeclaration = Doc.CreateXmlDeclaration("1.0","UTF-8", "yes")
Doc.AppendChild(dec)
Dim DocRoot As XmlElement = Doc.CreateElement("Comprobante")
atributoscomprobante(DocRoot)
sellar
Doc.Save("C:\OutDocument.xml")
end sub
Private Sub atributoscomprobante(acepta As XmlElement)
Dim atrib As XmlNode
entre otros atributos ....
atrib = Doc.CreateAttribute("total")
atrib.Value = "350.00"
acepta.Attributes.Append(atrib)
atrib = Doc.CreateAttribute("noCertificado")
atrib.Value = ""
acepta.Attributes.Append(atrib)
Doc.AppendChild(acepta)
End Sub
private sub sellar()
dim noCertificado as string = "30001000000100000800" variables x definidas
Doc.GetElementsByTagName("Comprobante", "http://www.lapagina/2")(0).Attributes("noCertificado").Value = noCertificado
Doc.GetElementsByTagName("Comprobante", "http://www.lapagina/2")(0).Attributes("Certificado").Value = Certificado
End Sub
lo que necesito es con la funcion GetElementsByTagName actualizar datos a ciertos atributos que puedo hacer
No necesito recorrer los valores sino establecerlos
gracias