I have a.xsl file
--------
<select name="frm" tabindex="1">
<xsl:attribute name="value">
<xsl:value-of select="@value"/>
</xsl:attribute>
<xsl:value-of select="@value"/>
<option value="1">R</option>
<option value="2">p</option>
<option value="3">I</option>
<option value="4">G</option>
</select>
----------
b.xml will get a value from a.xsl.
How can i send a value to there?
--------
<select name="frm" tabindex="1">
<xsl:attribute name="value">
<xsl:value-of select="@value"/>
</xsl:attribute>
<xsl:value-of select="@value"/>
<option value="1">R</option>
<option value="2">p</option>
<option value="3">I</option>
<option value="4">G</option>
</select>
----------
b.xml will get a value from a.xsl.
How can i send a value to there?