在c#中以更灵活的方式显示xml文件中的数据
我想显示 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.