如何从XML中的属性名称获取属性值

如何从XML中的属性名称获取属性值

本文介绍了如何从XML中的属性名称获取属性值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是我的xml



hi this is my xml

<pre lang="text">

<request action="registration">
<element id="id001">
<properties name="username">DV_sonic78
<properties name="password">prabu78







我想用这个XML取用户名值DV_sonic78和密码prabu78



我试过的:






I want to take username value as DV_sonic78 and password as prabu78 from this XML

What I have tried:

<pre lang="c#"> XmlDocument doc = new XmlDocument();
                     doc.LoadXml(StrRequest);
                     XmlElement root = doc.DocumentElement;
                     string s = root.Attributes["username"].InnerText;

推荐答案



这篇关于如何从XML中的属性名称获取属性值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 21:22