Tagged Questions
0
votes
0answers
18 views
How to display product based on xml node using c#
Its a common one - but its not working for me with Amazon(AWS) XML
here is my xml:
<BrowseNodeLookupResponse ...
-3
votes
1answer
399 views
How to remove a Node from XML Node List using C#
I am having a XmlNodeList xnlSubParam
XmlDocument xDoc = new XmlDocument();
xDoc.Load(somexml);
XmlNode xnParamList = xDoc.SelectSingleNode("//tag");
...
2
votes
0answers
69 views
C# - using XmlNode class to find acroform or xfa form
I am making use of Xmlnode class to find acroform or xfa form i am thinking the difference as to be something in the xml content what i am trying to find out is the template node
so for example i get ...
0
votes
0answers
187 views
how to delete a particular node in xml?
i have one problem to delete the node in xml ,i have node list i stored some details,now i searched by one node value (somevalue),and i want to delete the corresponding child nodes
here is xml
...
1
vote
1answer
800 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
2k 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 ...
4
votes
3answers
7k views
Loop through multiple subnodes in XML
<Sections>
<Classes>
<Class>VI</Class>
<Class>VII</Class>
</Classes>
<Students>
<Student>abc</Student>
...
0
votes
1answer
116 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
954 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 ...
2
votes
1answer
8k 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 ...
