Hi All,
Here is my xml:
Here is my xslt and I need to pull the value of "joe" but it will be dynamic every time.
I cannot get it to match on this.
Thanks in advance,
Todd
Here is my xml:
Code:
<script>
<actions>
<actions>
<step type="Navigate">
<query>
<parameter name="Name">
<variable type="Static">
<![CDATA[site]]>
</variable>
</parameter>
<parameter name="Value">
<variable type="Static">
<![CDATA[joe]]>
</variable>
</parameter>
</query>
</step>
</actions>
<action>
<script>
Code:
<xsl:value-of select="//app:step[@type = 'Navigate']/app:query[app:parameter[@name = 'Name'] = 'site']/app:parameter[@name = 'Value']" />
Thanks in advance,
Todd
Comment