在xslt中制作无间断滚动图片,即把 <xsl:apply-templates select="Record"/>的内容制作成无间断滚动
<?xml version="1.0" encoding="GB2312" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" version="4.0" indent="no"/>
<xsl:template match="/Goodo">
<table height="128" border="0" cellpadding="0" cellspacing="0">
<tr valign="top">
<xsl:apply-templates select="Record"/>
</tr>
</table>
</xsl:template>
<xsl:template match="Record">
<td width="144" >
<table width="144" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="144" height="114" background="images/bg05.gif" >
<a href="{@ContentUrl}" target="_blank">
<img src="{@ContentUrl}" width="122" height="90" alt="{@ContentTitle}" border="0"/>
</a>
</td>
</tr>
</table>
</td>
<td width="34"></td>
</xsl:template>
</xsl:stylesheet>
[求助]aspx不间断滚动