|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: How to populate a HTML <select> tag..??
> how do
> I fill in such
> tag attributes as value="", and so on using xsl? For example:
>
> <select name="<xsl:value-of select='.'/>" size="1"><option
> value="<xsl:value-of select='.'/>"></select>
>
Either use attribute value templates:
<select name="{.}" size="1">
or xsl:attribute:
<select>
<xsl:attribute name="name">
<xsl:value-of select="."/>
</xsl:attribute>
</select>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








