2013-03-11 104 views
0

我有文檔庫,其中ColumnName是名稱和數據超鏈接到文檔。 我想通過xslt訪問它。 List appears like given below After applying xsl should appear like this but right now i am able to populate the Name.Where as my current requirement is. it should be hyperlinked to the corresponding document超鏈接列通過Xsl名稱

My xsl code is given below: 
<xsl:stylesheet version="1.0" 
       xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
       xmlns:msxsl="urn:schemas-microsoft-com:xslt" 
       exclude-result-prefixes="msxsl" xmlns:ddwrt2="urn:frontpage:internal"> 
    <xsl:output method='html' indent='yes'/>  
    <xsl:template match='dsQueryResponse'> 
    <table cellpadding="10" cellspacing="0" border="1" style="padding:25px;">  
     <tr> 
     <td colspan='2'> 
      <b style="font-size:25px;">NewsLetter List</b> 
     </td>   
     </tr> 
     <xsl:apply-templates select='Rows/Row'/> 
    </table> 
    </xsl:template> 

    <xsl:template match='Row'> 
    <tr> 
     <td> 
     <table width="100%" border="0" cellspacing="1" cellpadding="1"> 
      <tr> 
      <td> 
       <b> 
       <img src="../PublishingImages/newsletter_icon.png" width="20px" height="20px"></img> 
       </b> 
       </td> 
      <td> 
       <xsl:value-of select="@Name"/> 
      </td> 
      </tr> 

     </table>  
     </td> 
    </tr>  
    </xsl:template> 
</xsl:stylesheet> 
+0

那麼,什麼是你的題? – JLRishe 2013-03-11 08:34:08

+0

我的問題是我想要超鏈接這些數據,如果你看到圖像(AJAX Q.docx等)。如果我點擊這些數據,它應該導航我到相應的文件。 – missReclusive 2013-03-11 08:38:10

+0

您是否有一個正在輸入到XSLT中的XML示例? – JLRishe 2013-03-11 08:55:58

回答

0

假設源XML包含了默認情況下可用相同的屬性,你可以嘗試更換此:

<td> 
    <xsl:value-of select="@Name"/> 
</td> 

有了這個:

<td> 
    <a href="{@FileRef}"> 
    <xsl:value-of select="@Name"/> 
    </a> 
</td> 
+0

非常感謝:) – missReclusive 2013-03-11 10:56:46