2011-10-27 56 views
0

我有如下一個XSL文件:如何鏈接/添加XML網址XSL文件中

-------Begin------ 
    <?xml version="1.0" encoding="utf-8"?> 
    <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
    <xsl:template match="/"> 
    <html> 
    <body> 
    <h1>Content Cert the following App Images</h1> 

    <h3>APPX Images</h3> 
    <table border="1"> 
     <tr bgcolor="rgb(0,176,240)"> 
     <th>Images</th> 
     </tr> 
     <xsl:for-each select="Images/Image"> 
     <tr> 
      <td> 
      <img> 
       <xsl:attribute name="src"> 
       <xsl:value-of select="ImageURL"/> 
       </xsl:attribute> 
      </img> 
      </td> 
     </tr> 
     </xsl:for-each> 
    </table> 


    </body> 
    </html> 
    </xsl:template> 
    </xsl:stylesheet> 
--------end-------- 

我在我的本地路徑XML文件。使用此XSL文件我創建一個MHT文件,因爲我在XSL文件

eneterd現在我要連結的xml文件中已經存在在XSL文件我loacl路徑將顯示圖像。我曾嘗試使用<a href = "c:\data\test.xml"></a>

我沒有看到XML鏈接正在嵌入mht文件中。你可以請幫助在這如何鏈接/添加xml文件中的XML網址,我應該在哪裏添加該行代碼? 由於事先

回答

1

嘗試添加到body元素的節點:

<a href="c:\data\test.xml">Link to XML</a> 
+0

這完美的作品。如果我想在文件末尾顯示整個XML內容而不是給出鏈接,那麼請讓我知道我應該在上述指令中做什麼更改? –

+0

我嘗試過使用下面的命令:但它不顯示我預期的實際數據。如何顯示我們在打開xml文件時看到的確切信息? –