Hi All,
I'm trying to create a form in my XSLT file and fill in the input tag
attributes with results from an XML transformation. Here's what I'm
doing that's not working:
<INPUT type="checkbox"
name="<xsl:valu e-of select='@file'/>"
value="<xsl:val ue-of select='@file'/>"
MSXSL reports: The character '<' cannot be used in an attribute value.
How can I perform this task correctly? Thanks.
I'm trying to create a form in my XSLT file and fill in the input tag
attributes with results from an XML transformation. Here's what I'm
doing that's not working:
<INPUT type="checkbox"
name="<xsl:valu e-of select='@file'/>"
value="<xsl:val ue-of select='@file'/>"
>
How can I perform this task correctly? Thanks.
Comment