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]
Other format: [Raw text]

RE: special chars appearing in href - %09 %0A etc


Hi,

> I am trying to create href out of my xsl but some special characters 
> like %09 and %0A are getting added to the href.
> How can i avoid this
> 
> My XSL is :
> 
>                         <a>
>                             <xsl:attribute name="href">
>                                                         <xsl:value-of 
> select="$url"/>?a=b&amp;c=d
>                             </xsl:attribute>
>                             <xsl:value-of select="."/>
>                         </a>   



> The href produced is :
> http://localhost:8080/report/servlet/RepManagerServlet?a=b&c=d 
> %0A%0A%09%09%09%09%09%09%09
> 
> What could be the problem.

Whitespace. All the whitespace that's between "?a=b&amp;c=d" and the end element for xsl:attribute is used in the attribute value. Control it by 

  <a>
    <xsl:attribute name="href">
      <xsl:value-of select="$url"/>?a=b&amp;c=d</xsl:attribute>
    <xsl:value-of select="."/>
  </a>

or e.g. with Allouche Method

  <a>
    <xsl:attribute name="href">
      <xsl:value-of select="$url"/>?a=b&amp;c=d<xsl:text />
    </xsl:attribute>
    <xsl:value-of select="."/>
  </a>

Cheers,

Jarno

 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]