Tagged Questions
0
votes
3answers
33 views
How to update XML nodes with new values?
I have a xml inside my App_Data folder. I need to edit the values in nodes of that xml. What I had tried is-
XmlDocument xDoc = new XmlDocument();
...
0
votes
0answers
77 views
How to populate listbox with REST Parameters for Wiki api on ASP.NET?
I am using this Wiki api: https://en.wikipedia.org/w/api.php, for a website where users can type in a keyword, and a dropbox is filled with Wikipedia Categories. When a Category is a selected, a ...
1
vote
1answer
90 views
Get XML node using XMLNode(.Net) with multiple condition
My XML format is like this.
<Rule id="MyRule">
<SubRule type="min" id="50" />
</Rule>
I wrote the path to get the every nodes which id is greater than equal 50
...
0
votes
2answers
108 views
Delete a whole Node from an Xml Advertisement file?
I am trying to delete a whole XmlNode which matches a certain condition
The format of my xml file is as follows:
<?xml version="1.0" encoding="utf-8"?>
<Advertisements>
<Ad>
...
1
vote
1answer
495 views
select multiple values from xml file in c#
I am trying to select three values from xml document.
I want to get the value from within the node. There are five values in the xml file and I want to know what will be the best approach to take ...
0
votes
1answer
354 views
ASMX WebService returning XmlNode instead of custom object
Here is the webservice:
Custom classes:
public class A
{
public A()
{
}
public B prop { get; set; }
}
public class B
{
public B()
{
}
public A prop { get; set; }
}
...
2
votes
1answer
2k views
Webservice method return XmlDocument, Reference sees a XmlNode
I've faced a problem I can't solve that's why I beg you to help me!
I'm working with a WebService and I'm trying to return a XmlDocument from a WebService method called GetSystemDocument which looks ...
0
votes
2answers
757 views
XPATH Help: Finding XML Nodes in a Namespace with XPathNodeIterator
I am having problems finding the proper XPATH syntax to get the nodes I want with this XML file. For one, there is no NameSPace in the XML so I have to add one in code. I think this effects my XPATH.
...
6
votes
2answers
746 views
Avoid reloading all XML data for each repeater - vb.net
I am trying to place a repeater within a repeater using xml data. I have it working exactly as I want, but the method I have used reloads the data for each repeater. I think I need to cast as an ...
