XML

XSLT <sort>

조회 수 8619 추천 수 0 2008.11.19 13:54:04

<xsl:sort> 엘리먼트

<?xml version="1.0" encoding="ISO-8859-1"?> 
<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> 
 
<xsl:template match="/"> 
  <html> 
  <body> 
    <h2>My CD Collection</h2> 
    <table border="1"> 
      <tr bgcolor="#9acd32"> 
        <th>Title</th> 
        <th>Artist</th> 
      </tr> 
      <xsl:for-each select="catalog/cd"> 
      <xsl:sort select="artist"/> 
      <tr> 
        <td><xsl:value-of select="title"/></td> 
        <td><xsl:value-of select="artist"/></td> 
      </tr> 
      </xsl:for-each> 
    </table> 
  </body> 
  </html> 
</xsl:template> 
 
</xsl:stylesheet> 

My CD Collection

Title Artist
Romanza Andrea Bocelli
One night only Bee Gees
Empire Burlesque Bob Dylan
Hide your heart Bonnie Tyler
The very best of Cat Stevens
Greatest Hits Dolly Parton
Sylvias Mother Dr.Hook
Eros Eros Ramazzotti
Still got the blues Gary Moore
Unchain my heart Joe Cocker
Soulsville Jorn Hoel
For the good times Kenny Rogers
Midt om natten Kim Larsen
Pavarotti Gala Concert Luciano Pavarotti
1999 Grammy Nominees Many
The dock of the bay Otis Redding
When a man loves a woman Percy Sledge
Maggie May Rod Stewart
Stop Sam Brown
Black angel Savage Rose
Picture book Simply Red
Bridge of Spies T`Pau
Red The Communards
Private Dancer Tina Turner
Tupelo Honey Van Morrison
Big Willie style Will Smith
 
문서 첨부 제한 : 0Byte/ 2.00MB
파일 제한 크기 : 2.00MB (허용 확장자 : *.*)
List of Articles
번호 제목 글쓴이 날짜 조회 수
19 xml파일 생성 [레벨:30]똑띠 2010-12-27 2971
18 xml parser (php , xml 다루기) [레벨:30]똑띠 2010-12-27 3461
17 XSLT <if> [레벨:30]똑띠 2008-11-19 6645
» XSLT <sort> [레벨:30]똑띠 2008-11-19 8619
15 XSLT <for-each> [레벨:30]똑띠 2008-11-19 6526
14 XSLT <value-of> [레벨:30]똑띠 2008-11-19 5938
13 XSLT <template> [1] [레벨:30]똑띠 2008-11-19 5868
12 XSLT 변환(Transform) [레벨:30]똑띠 2008-11-19 7251
11 XSLT 소개 [레벨:30]똑띠 2008-11-19 6279
10 XSL에 대하여 [레벨:30]똑띠 2008-11-19 5614
9 XML 네임스페이스 개념 [1] [레벨:30]똑띠 2008-07-31 11762
8 XML작성 기본 규칙 [레벨:30]똑띠 2008-07-28 9221
7 xml 강좌에 대한 정리 [레벨:30]똑띠 2007-07-30 15654
6 XSL & XML file [레벨:30]똑띠 2007-07-30 10119
5 DTD & XML [레벨:30]똑띠 2007-07-17 12388
4 XML에서 DTD란 무엇인가? [레벨:30]똑띠 2007-07-17 10723
3 XML의 구성요소 [레벨:30]똑띠 2007-07-17 10087
2 XML[extensible markup language]의 시작 file [레벨:30]똑띠 2007-07-17 9028
1 XML[extensible markup language] 이란 무엇인가? file [레벨:30]똑띠 2007-07-17 11121