建议下载个ms xmlsdk吧,很简单的http://msdn.microsoft.com/XML/XMLDownloads/default.aspx

解决方案 »

  1.   

    因为你没有格式要求,我大概写了一个如下的XSL
    <?xml version="1.0" encoding="GB2312" ?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">  //十二分注意不能把TR和WD写成小写了,否则浏览器不识别!<xsl:template match="/">
    <html>
     <Body>
      <xsl:for-each select="apm">
       <xsl:apply-templates/>
      </xsl:for-each>
      <Table border="1" cellpadding="5">
       
       <xsl:for-each select="//title" >
        <tr>
         <xsl:apply-templates/>
        </tr>
       </xsl:for-each>
      </Table>
     </Body>
    </html>
    </xsl:template>
    <xsl:template match="item">
     <br/>
    </xsl:template>
    <xsl:template match="imag">
     <td width="120" height="180">
     <img width="120" height="180">
      <xsl:attribute name="src">
       <xsl:value-of/>
      </xsl:attribute>
     </img>
     </td>
    </xsl:template></xsl:stylesheet>如果觉得不清晰,可以看一个简单的例子
    http://blog.csdn.net/hxhbluestar/archive/2004/08/17/77447.aspx希望能有所帮助!