Link to home
Start Free TrialLog in
Avatar of jacy_m
jacy_m

asked on

xsl syntax question

Hi,
I have the following code, all of which works fine except for the links down the bottom (underneath cast your vote). I dont really know if I can do this or not. I want the links to be hard coded (not coming out of any of the xml stuff). I didnt write the rest of the code, I am just trying to edit it and am not sure what I am doing... Oh I am writing it in WML

I would actually like the link to be
page.jsp?vote=up&target=xsl:value-of select="//pageid"/>
but i dont know how to concatenate xml and static values

Pls Help! thanks


<?xml version="1.0"?>
<xsl:stylesheet version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>
<xsl:output method="xml"
        doctype-system ="http://www.wapforum.org/DTD/wml_1.1.xml"
        doctype-public="-//WAPFORUM//DTD WML 1.1//EN"/>
   <xsl:template match="/">

     <wml>
     <card id="Node" title="Node">

           <p><xsl:value-of select="//title"/></p>
     
          <p><xsl:text>Author:</xsl:text><xsl:value-of select="//author"/></p>
          <p><xsl:text>Category:</xsl:text><xsl:value-of select="//category"/></p>
          <p><xsl:text>Id:</xsl:text><xsl:value-of select="//pageid"/></p>
          <p><xsl:text>Published:</xsl:text><xsl:value-of select="//datepublished"/></p>
       
         <p><xsl:text></xsl:text></p>
         <p><xsl:value-of select="//content"/></p>
         
         <p><xsl:text>Hard-Links:</xsl:text></p>
         <xsl:for-each select="//hardlinks/hardlink">
               <p><a>
               <xsl:attribute name="href"><xsl:value-of select="link"/></xsl:attribute>
               <xsl:value-of select="label"/>
               </a></p>
        </xsl:for-each>

          <p><xsl:text>Cast your Vote</xsl:text></p>
          <p><a><xsl:attribute name="href"><a href="page.jsp?vote=up">Liked It</xsl:attribute></a></p>
          <p><a><xsl:attribute name="href"><a href="page.jsp?vote=down">Disliked It</xsl:attribute></a></p>


     </card>
     </wml>

    </xsl:template>
</xsl:stylesheet>

Avatar of ahosang
ahosang
Flag of United Kingdom of Great Britain and Northern Ireland image

Something like :
<a><xsl:attribute name="href">page.jsp?vote=up&target=<xsl:value-of select="//pageid"/></xsl:attribute>Liked It</a>
ASKER CERTIFIED SOLUTION
Avatar of dragosh
dragosh

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial