This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: Mailto problem


> From: owner-xsl-list@lists.mulberrytech.com
> [mailto:owner-xsl-list@lists.mulberrytech.com]On Behalf Of Adam Van Den
> Hoven
> Sent: Wednesday, August 29, 2001 6:11 PM
> To: 'xsl-list@lists.mulberrytech.com'
> Subject: RE: [xsl] Mailto problem
>
>
> Karlo,
>
> instead of:
>
> >       <A><xsl:attribute name='HREF'>
> > mailto:abc@xyz.com?subject=order&body=send%20current-issue
> >           </xsl:attribute>
> >      </A>
>
>
> use
>
> <a><xsl:attriubte name="href">
> <xsl:text disable-output-escaping='true'>
> mailto:abc@xyz.com?subject=order&amp;body=send%20current-issue
> </xsl:text>
> </xsl:attriubte>
> </a>
>
> The problem is that you were using an & for something other than
> starting an
> entity. This will fix your problem.

And what is the xsl:text disable-output-escaping='true' supposed to do?

Just <a
href='mailto:abc@xyz.com?subject=order&amp;body=send%20current-issue'>...</a
>

should to the job as well...


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]