如何用Classic asp解析xml?
您好,我需要使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
您可以使用 MSXML COM 库轻松完成此操作:
以及一些 MSDN 文档。
我没有为您的问题提供具体示例,请从学习 DOM - 这很简单。
You may do it easily with the MSXML COM library:
and some MSDN docs.
I don't give you a concrete example for your problem, start with learning DOM - it's easy.