<?xml……
<a>
<b>
<c>
<id>1</id>
<name>c1</name>
<date>03-2-10</date>
</c>
<c>
……
</c>
……
</c>
</b>
</a>
以上这样的结构,如何只取出前10
<xsl:for-each select="a/b/c[position()<=10]">
</xsl:for-each>
<table datasrc="#XXXX" border="1" DATAPAGESIZE=10>
指定 DATAPAGESIZE=10 属性
XML island is a recordset. You can handle it using javascript
You can move the cursor moveFirst, moveNext ......
or
for ( i=0;i<10 && i<yourxmlid.recordset.Fields.Count -1;i++)
{ alert(yourxmlid.recordset(i).Name);
alert(yourxmlid.recordset(i));
}