Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
406 views

Loop through multiple subnodes in XML

<Sections> <Classes> <Class>VI</Class> <Class>VII</Class> </Classes> <Students> <Student>abc</Student> ...
2
votes
2answers
63 views

Parse node string to XMLNodeList

I'm curious, what would be the neatest way to parse a string of xml nodes to a XmlNodeList. For example; string xmlnodestr = "<mynode value1='1' value2='123'>abc</mynode> <mynode ...
2
votes
5answers
175 views

Reading an XML in C#

I'm using System.Xml to read a xml file in C#. First I open the file (locally)... and use foreach to get the values, like this: XmlNodeList titles = xmlDoc.GetElementsByTagName("title"); foreach ...
2
votes
2answers
7k views

Load an XmlNodeList into an XmlDocument without looping?

I originally asked this question on RefactorMyCode, but got no responses there... Basically I'm just try to load an XmlNodeList into an XmlDocument and I was wondering if there's a more efficient ...
1
vote
1answer
124 views

Select XML Node value by Attribute Value with multiple levels

I've been searching for an answer for a few days now but don't seem to be getting anywhere. I'm looking to get to value further in the XML code than I've seen examples for and with more attributes to ...
1
vote
1answer
100 views

How populate XmlNodeList with all the children of a node with the same name?

Given a XmlNode containing the following XML fragment, how do I fill XmlNodeList with book nodes? XMLNode nodeLibrary contains: <library> <book> <title>Three Little ...
0
votes
0answers
12 views

Collecting checked checkboxes from treeview data, and finding the data in the xml to import

first off I am still new to C# so bear with me while I try to explain this. So I have a form that has treeview with checkboxes that populates from an xml file. After the user checks whatever boxes, ...
0
votes
0answers
22 views

How can I rearrange a nodelist based on variable?

I want to rearrange a nodelist I am parsing from an xml file online, I am using DOM parser. I have a variable that the user can set. My nodelist is pulling attributes from tagname example <a ...
0
votes
2answers
83 views

XmlNodeList SelectNodes trouble

I'm trying to parse an xml file My code looks like: string path2 = "xmlFile.xml"; XmlDocument xDoc = new XmlDocument(); xDoc.Load(path2); XmlNodeList xnList = ...
0
votes
0answers
53 views

XmlDiff.Compare with XmlNodeList

I need to compare only specific nodes from two XML files. Suppose if both the XML structure is as below: XML 1: <Species> <Human> <Number>2</Number> ...
0
votes
1answer
84 views

Node is not removed from XmlDocument

Edit: I found the bug. XmlNodeList nodes = mydoc.SelectNodes("//dict/dict/dict"); has wrong structure. The correct xml schema is "/plist/dict/dict/dict" and now i do get the correct output. Removing ...
0
votes
4answers
217 views

How to get text inside an XmlNode (C#)

How do I get the text that is within an XmlNode? See below: XmlNodeList nodes = rootNode.SelectNodes("descendant::*"); for (int i = 0; i < nodes.Count; i++) { ...
0
votes
1answer
260 views

Combine XmlNodelist

Can any one please give me a solution to combine xmlNodelists to a single list .
0
votes
1answer
73 views

XML and .NET: How to replace specific node with many other ones loaded from raw xml data

Let's suppose we have an element like this one in the main xml file: <group name="gr1" filename="groups/gr1.xml"/>. The second file gr1.xml contains something like this: <item ...
0
votes
1answer
591 views

Trying to use RemoveChild() on XmlNodeList messes up my XmlNode collection

I'm trying to remove a specific node from a XmlNodeList named listaWidths. This specific list has 5 items before I use RemoveChild(). But, after the RemoveChild() statement, the list stays only with 1 ...
0
votes
1answer
877 views

Nested Repeater using XMLNodeList

I am stuck on a problem. I think I am probably close to the solution but can not seem to get there. I have an XMLDoc that is loaded from a stored Proc, into a dataset and the xml is pulled from it, ...