pelegk Posted May 13, 2003 Posted May 13, 2003 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
pelegk Posted May 14, 2003 Author Posted May 14, 2003 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>
Recommended Posts
This topic is 7864 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now