TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Chris Johnson
NA
67
32.2k
c# Reading XML nodes with spaces.
Apr 7 2016 8:15 AM
Hello all. This will be easy for someone. I am attempting to write a little program to read incoming reports from a customer.
while (reader.Read())
{
switch (reader.NodeType)
{
case XmlNodeType.Element: // The node is an element.
settings.IgnoreWhitespace = true;
if (reader.Name == "vShipperNumber Text")
{
MessageBox.Show(reader.Name + " " + reader.Value);
}
break;
}
}
and a small piece of the XML looks like this.
-<Row2>
<vShipperNumber Text="71370001"/>
</Row2>
So I get back vShipperNumber from the code because of the space and never get the value "71370001". Could someone please tell me what I am doing wrong? Please be aware I have never worked with XML before and I really have not yet understood the structure.
Reply
Answers (
2
)
how to send message
Gridview RadioButton is not working after publishing my app