Complex URLs
This seems to work fine:
<a>
<xsl:attribute name="href">
../build/new.aspx?file=<xsl:value-of select="Filename" />
</xsl:attribute>
[ edit ]
</a>
But I am trying to add some more values in the querystring but it always gives me errors, e.g.:
<a>
<xsl:attribute name="href">
../build/new.aspx?file=<xsl:value-of select="Filename" />&edit=true
</xsl:attribute>
[ edit ]
</a>
How can this be done? Thanks!
|