如何用Classic asp解析xml?

发布于 2024-11-15 15:16:23 字数 231 浏览 0 评论 0原文

您好,我需要使用 Classic asp 解析 xml,

xml,

    <?xml version="1.0" encoding="utf-8"?>
<int xmlns="http://url.com/WebServices">0</int>

这是我需要获取 0 的

您能否向我展示这个特定情况的示例?谢谢

Hi I need to parse xml with Classic asp

here is the xml

    <?xml version="1.0" encoding="utf-8"?>
<int xmlns="http://url.com/WebServices">0</int>

I need to get 0

Could you please show me an example for this particular case? thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鯉魚旗 2024-11-22 15:16:23

ondrejsv 是对的 - XMLDom 很容易学习。它也是一个标准,所以一旦你用一种语言学习了它,那么在其他所有语言中也是一样的。

Devguru.com 有一个很棒的参考,其中有很多示例......我一直发现它比 MSDN 有用得多。

ondrejsv is right - XMLDom is easy to learn. It's also a standard, so once you learn it in one language, it's the same in every other language.

Devguru.com has an excellent reference with lots of examples... I've always found it a lot more useful than MSDN.

空城之時有危險 2024-11-22 15:16:23

您可以使用 MSXML COM 库轻松完成此操作:

Dim xmlDoc
Set xmlDoc = Server.CreateObject("Microsoft.XMLDOM")

以及一些 MSDN 文档

我没有为您的问题提供具体示例,请从学习 DOM - 这很简单。

You may do it easily with the MSXML COM library:

Dim xmlDoc
Set xmlDoc = Server.CreateObject("Microsoft.XMLDOM")

and some MSDN docs.

I don't give you a concrete example for your problem, start with learning DOM - it's easy.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文