Issue with XML / SelectNodes using ASP VBScript

后端 未结 2 746
[愿得一人]
[愿得一人] 2020-11-27 07:56

Got an issue displaying information from XML. I think it has something to do with selecting the correct node (Company Name). Need a fresh opinion... got a feeling I am proba

2条回答
  •  余生分开走
    2020-11-27 08:39

    If you want to obtain the node CompanyName, then try this:

    theNode = "/GovTalkMessage/Body/CompanyDetails/CompanyName"
    Response.Write (XMLDom.SelectSingleNode(theNode).xml)
    

提交回复
热议问题