|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: How to populate a HTML <select> tag..??
> [Kevin Duffey]
> Subject: How to populate a HTML <select>
> tag..??
> <select name="<xsl:value-of select='.'/>"
> size="1"><option value="<xsl:value-of
> select='.'/>"></select>
It's easy to forget that XSLT is XML (and not a scripted substition language
like Active Server Pages), and any XSLT script needs to obey the rules of
well-formed XML.
You can either use the {} syntax for evaluating expressions in attributes:
<select name="{.}" size="1">
Or you can use the xsl:attribute element:
<OPTION>
<xsl:attribute name="value">
<xsl:value-of select="." />
</xsl:attribute>
Option text goes here.
</OPTION>
If you really do want a "<" in an attribute (or as part of an expression),
then it needs to be escaped (<).
- Paul
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








