“undeclared reference to namespace prefix ” error

前端 未结 1 1618
失恋的感觉
失恋的感觉 2021-01-28 06:24

I use xml to get label for my website.

the xml generated from database file look like this



        
相关标签:
1条回答
  • 2021-01-28 07:00

    You have not declared any namespaces for MSXml.

    You can add the following after loading the document and before selection:

    XMLL.setProperty("SelectionNamespaces", "xmlns:s='uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882' xmlns:dt='uuid:C2F41010-65B3-11d1-A29F-00AA00C14882' xmlns:rs='urn:schemas-microsoft-com:rowset'");
    

    See this article for more details.

    0 讨论(0)
提交回复
热议问题