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: small problem


Hi Vanaja,


I miss the "A" tags in your first piece of code. You only have "TD"
tags there.

This code (with those "TD" tags) looks to be standard and works 
for me (MSXML3):

  <TD>
    <A>
      <xsl:attribute name="HREF">
          mailto:<xsl:value-of select="email" />
      </xsl:attribute>
      <xsl:value-of select="email" />
    </A>
  </TD>


For some input like:
   <email>me@somewhere.org</email>

this should produce an output looking like:
  <TD>
    <A HREF="mailto:me@somewhere.org">
      me@somewhere.org
    </A>
  </TD>


Have fun,

Paulo

-----Original Message-----
From: owner-xsl-list@mulberrytech.com
[mailto:owner-xsl-list@mulberrytech.com]On Behalf Of vanaja gogineni
Sent: Tuesday, April 18, 2000 3:55 PM
To: xsl-list@mulberrytech.com
Subject: small problem


Hai

I am new to XSL

I am getting one problem

how to include href in XSL

I was try like this
<TD >
    <xsl:attribute name="href">email:
    <xsl:value-of select="email"/>
    </xsl:attribute>:<xsl:value-of select="email"/>

</TD>

The problem is I am not able to display the link only the text is displayed

can any one help me

I tried this also it is also not working properly

<A href="mailto:{email}"><xsl:value-of select="email"/>
            


Regards

Vanaja


__________________________________________________________________
Get your own free England E-mail address at http://www.england.com


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


 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]