May 13, 200322 yr the prolem is this :i i have a hidden value : (*) <input type="hidden" size="2" name="STREET" value=""></input> i want to give the value type a value from an xml! the value that i read is this : <xsl:value-of select='normalize-space(street)'/> when in line (*) i try to do : value=<xsl:value-of select='normalize-space(street)'/> its a mistake!!!!!!!! do u know what can i do? thanks in advance Peleg
May 14, 200322 yr Author found it! this is the answer : <input type="hidden" size="2" name="STREET" > <xsl:attribute name="value"> <xsl:value-of select="normalize-space(street)" /> </xsl:attribute> </input>
Create an account or sign in to comment