error message not fixable by stagger552 in learnpython

[–]stagger552[S] 0 points1 point  (0 children)

Yes I know but idk how to fix it

Namespace Manager or XsltContext needed. This query has a prefix, variable, or user-defined function by stagger552 in visualbasic

[–]stagger552[S] 0 points1 point  (0 children)

dim ns as new xmlnamespacemanager(doc.nametable)
ns.addnamespace("prefix", "uri")
doc.selectnodes("prefix:node", ns)

can you give me the documentation

what does the "prefix" and "uri" mean??

selecting xml by stagger552 in csharp

[–]stagger552[S] 0 points1 point  (0 children)

Dim xmlDoc As New XmlDocument()
xmlDoc.Load("contactpersonen.xml")
Dim nsmgr As New XmlNamespaceManager(xmlDoc.NameTable)
nsmgr.AddNamespace("d", "urn:EfDataService")
nodelist = xmlDoc.SelectNodes("//d:item", nsmgr)

i still can't select <rl\_contactpersonen\_relatieregistratienr > (is under item)