You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by do...@db.com on 2000/06/01 11:36:51 UTC

Re: Can't seem to disable escaping of & for HTML output within href attribute


Ok,

I probably should have been more specific. I think the problem is with the
<area> tag

The following XSL
          <area coords="46,0,115,15" shape="rect">
               <xsl:attribute
name="href">cgiprogram?param1=1&amp;Param2=2</xsl:attribute>
          </area>
Produces
          <area shape="rect" coords="46,0,115,15"
href="cgiprogram?param1=1&amp;Param2=2">

Where as  <a>
               <xsl:attribute
name="href">cgiprogram?param1=1&amp;Param2=2</xsl:attribute>
          </a>

Correctly produces
          <a href="cgiprogram?param1=1&Param2=2"></a>


Dougall Squair