Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

input type=hidden and xsl!


This topic is 7864 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

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!!!!!!!!!!!!!!!!!

mad.gifmad.gifdo u know what can i do?

thanks in advance

Peleg

Posted

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>

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.