如何在经典asp中加载xml文件

发布于 2024-12-07 03:43:11 字数 401 浏览 0 评论 0原文

可能的重复:
如何使用经典asp解析xml?

我想加载一个 XML经典 ASP 中的文件。

我正在使用

blnFileExists = objDom.Load(Server.MapPath("\a\abcfiles\admin\image_name.xml"))  

,但是当我写 blnFileExists 时,它给了我 false。

我应该怎么办?

Possible Duplicate:
How to parse xml with Classic asp?

I want to load one XML file in classic ASP.

I am using

blnFileExists = objDom.Load(Server.MapPath("\a\abcfiles\admin\image_name.xml"))  

but when I write blnFileExists it gives me false.

What should I do?

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

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

发布评论

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

评论(2

无边思念无边月 2024-12-14 03:43:11

将 objDOM.parseError.reason 的内容写入响应以找出未加载的原因。

Write the contents of objDOM.parseError.reason to the response to find out why it didn't load.

(り薆情海 2024-12-14 03:43:11

验证文件路径是否如您所写。按照您编写的方式,文件 image_name.xml 应该位于 C:\Inetpub\wwwroot\a\abcfiles\admin 中。如果情况并非如此,那么问题就出现了。

您可能想为 Server.MapPath 提供一个虚拟路径,例如“/a/abcfiles/admin/image_name.xml”。此路径将解析为 http://www.yourWebSite.com/a/abcfiles /admin/image_name.xml。同样,如果这不是正确的路径,请根据需要进行调整。

Verify the file path is as you have it written. The way you have it written, the file image_name.xml should be in C:\Inetpub\wwwroot\a\abcfiles\admin. If that's not the case, then there's part of the problem.

You may want to instead give Server.MapPath a virtual path, like "/a/abcfiles/admin/image_name.xml". This path will be resolve to http://www.yourWebSite.com/a/abcfiles/admin/image_name.xml. Again, if this is not the correct path, adjust it as necessary.

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