Hi guys,
I have a bit of a problem and I can't seem to fix it. My XML file looks like this:
<?xml version="1.0"?>
<method>
<par>
<joint>
<name>SetupK</name>
<value>Start</value>
</joint>
</par>
</method>
I want to be able to assign the "Start" in <value></value> to a variable in my ASP code, but I'm unable to figure out how. If I use firstchild, I will get both SetupK and Start, which is not something I want. I want to try and avoid using XSL in this case, if possible.
Thanks a bunch for helping!
I have a bit of a problem and I can't seem to fix it. My XML file looks like this:
<?xml version="1.0"?>
<method>
<par>
<joint>
<name>SetupK</name>
<value>Start</value>
</joint>
</par>
</method>
I want to be able to assign the "Start" in <value></value> to a variable in my ASP code, but I'm unable to figure out how. If I use firstchild, I will get both SetupK and Start, which is not something I want. I want to try and avoid using XSL in this case, if possible.
Thanks a bunch for helping!