在c#中以更灵活的方式显示xml文件中的数据

发布于 2024-11-14 01:02:56 字数 567 浏览 1 评论 0原文

我想显示 xml 文件中的数据,例如酒店套餐的 xml api 。但是我有一些方法,例如 xmldocument()...仍然怀疑是否使用最有效的方法通过良好的编程技术来表示酒店数据。这是一个 Web 门户,我必须从远程 xml 文件获取数据。

<results>
    <content>
        <fields>
            <field name="headlines"> This is headline </field>
            <field name="text"> This is text </field>
            <field name="url"> This is url </field>
        <fields>
    </content>
    <content>
        …
    </content>
    …
</results>

i want to show data from xml files like xml api of hotel packages. however i have some methods like xmldocument()... still having doubt of using most effective way to represent hotel data with good programming techniques. this is a web portal where i have to fetch data from remote xml file.

<results>
    <content>
        <fields>
            <field name="headlines"> This is headline </field>
            <field name="text"> This is text </field>
            <field name="url"> This is url </field>
        <fields>
    </content>
    <content>
        …
    </content>
    …
</results>

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

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

发布评论

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

评论(1

耳钉梦 2024-11-21 01:02:56

Linq to XML 是一个很好的起点。除了该 MSDN 页面之外,还有一个 CodeProject 教程,解释如何使用 Linq到 XML。

Linq to XML is a good place to start. As well as that MSDN page, there's a CodeProject tutorial that explains how to use Linq to XML.

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