·您的位置: 首页 » 资源教程 » 编程开发 » HTML、CSS » 在模板中指定XSL样式表

在模板中指定XSL样式表

类别: XML教程  评论数:0 总得分:0

模板文件如下:
<?xml version="1.0" encoding="UTF-8"?>
<root xmlns:sql="urn:schemas-microsoft-com:xml-sql" sql:xsl="MyXsl.xsl">
<sql:query>
    Select FirstName,LastName from Employees For XML auto
</sql:query>
</root>


  在这里将模板文件tempxsl.xml存储在与template类型的虚拟名称(template)关联的目录中.XSL文件(MyXsl.xsl)也存储在同一目录中.MyXsl.xsl文件如下:


<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="*">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="Employees">
<tr>
<td><xsl:value-of select="@FirstName"/></td>
<td><xsl:value-of select="@LastName"/></td>
</tr>
</xsl:template>
<xsl:template match="/">
<html>
<head>
<style>th{background-color:#cccccc}</style>
</head>
<body>
<table border="2" style="width:300;">
<tr><th colspan="2">Employees</th></tr>
<tr><th>First Name</th><th>Last Name</th></tr>
<xsl:apply-templates select="root"/>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>


执行模板:http://localhost/template/tempxsl.xml

-= 资 源 教 程 =-
文 章 搜 索
关键词:
类型:
范围:
纯粹空间 softpure.com
Copyright © 2006-2008 暖阳制作 版权所有
QQ: 15242663 (拒绝闲聊)  Email: faisun@sina.com
 纯粹空间 - 韩国酷站|酷站欣赏|教程大全|资源下载|免费博客|美女壁纸|设计素材|技术论坛   Valid XHTML 1.0 Transitional
百度搜索 谷歌搜索 Alexa搜索 | 粤ICP备19116064号-1