You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
480 B

2 weeks ago
<?xml version="1.0" encoding="utf-8" ?>
<!-- 配合 xml.aspx 使用表格输出数据的XSLT文件简单版本
编制 袁永福 2007-12-28 -->
<xsl:stylesheet version='1.0' xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method='html' indent="yes"/>
<xsl:template match='/'>
<html>
<body>
<table border='1'>
<xsl:for-each select="Table/Record">
<tr>
<xsl:for-each select="*">
<td>
<xsl:value-of select="." />