lesya
(lesya)
1
Hi,
I need help.
I have a page that “generate” the following code:
<SEGMENTS>
<SEGMENT NAME="webcluster">
<RESULTPAGE>
<QUERYTRANSFORMS>
<QUERYTRANSFORM ACTION="NOP" MSG="A=0,B=0,C=0,D=0.20">
etc, etc, etc.
how can I program in a XSL page to take the value of “C” and “D”?
tnx
I know little about XSLT.
However, XML was intended to prevent the use of formatted data such as the MSG attribute. Could you not produce QUERYTRANSORM as:
<QUERYTRANSFORM ACTION="NOP">
<MSG NAME="A" VALUE="0"/>
<MSG NAME="B" VALUE="0"/>
<MSG NAME="C" VALUE="0"/>
<MSG NAME="D" VALUE="0.20"/>
</QUERYTRANSFORM>