DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> XML學習教程 >> XML詳解 >> 在模板中指定XSL樣式表
在模板中指定XSL樣式表
編輯:XML詳解     

模板文件如下:
<?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

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved