M
Mike
Hi,
I am new to XML.
I have the following C# code, which cannot make work:
if (xml.getNodeText("servers:server[servers:name='" + this.cboServers.Text + "']/servers:forums/servers:forum[servers:name=['" + forum + "']", m_ServersDoc) == "1")
I am trying to access the next sibling (called "subscribed") in the following XML file.
<forums>
<forum>
<name>BSIT1</name>
<subscribed>0</subscribed>
</forum>
<forum>
I tried "following-sibling::" but I cannot make it work. Any suggestion?
Mike
I am new to XML.
I have the following C# code, which cannot make work:
if (xml.getNodeText("servers:server[servers:name='" + this.cboServers.Text + "']/servers:forums/servers:forum[servers:name=['" + forum + "']", m_ServersDoc) == "1")
I am trying to access the next sibling (called "subscribed") in the following XML file.
<forums>
<forum>
<name>BSIT1</name>
<subscribed>0</subscribed>
</forum>
<forum>
I tried "following-sibling::" but I cannot make it work. Any suggestion?
Mike