程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C#刪除XML節點(3)

C#刪除XML節點(3)

編輯:關於C語言

★ ★★★★test.xsl XML文件轉換文件完整程序代碼★★★★★

<?XML version="1.0" encoding="utf-8"?>
< xsl:stylesheet version="1.0"
XMLns:xsl="http://www.w3.org/1999/XSL/Transform">
< xsl:template match="/">
< Html>
< body>
< !--
This is an XSLT template file. Fill in this area with the
XSL elements which will transform your XML to XHtml.
-->
<table width="300" height="30" border="10" cellspacing="0" cellpadding="0" style="font-size: 9pt;">
< tr align="center">
< td style="font-size: 9pt;">書名</td>
< td style="font-size: 9pt;">頁碼</td>
< /tr>
< xsl:for-each select="PUBLICATION/BOOK">
< tr align="center" height="30">
< td style="font-size: 9pt;">
< xsl:value-of select="TITLE"/>
< /td>
< td style="font-size: 9pt;">
< xsl:value-of select="PAGES"/>
< /td>
< /tr>
< /xsl:for-each>
< /table>
< /body>
< /Html>
< /xsl:template>
< /xsl:stylesheet>

圖1 刪除XML節點

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved