• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

XSL and XSLT

 
Ranch Hand
Posts: 358
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What is the diffrence between XSL and XSLT?
 
Ranch Hand
Posts: 51
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi,
XSLT is the part of XSL, actually XSL contains Two parts, One is XSLT and Formating Object called XSl:fo.
try to find for this Book "XML Bible", it is very good book it contains all the details.
------------------
glkishore,
 
rani bedi
Ranch Hand
Posts: 358
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is there anybody who can give a more explicit diffrence?
 
Ranch Hand
Posts: 77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
XSL is the standard stylesheets used for converting xml documents and displaying them. It has two distinct parts - the transformation part(XSLT) and the formatting part. Both these parts can work independent of each other. The transformation language can convert an xml document to a well formed HTML, another XML or an SGML and ignore the formatting part.And even the formatting part works on documents written with software other than in XSLT. So in essence XSL consists of two languages. Since XSLT can convert documnets to standard HTML format that can be displayed by web browsers they are very much in use - unlike the formatting object part. XSLT has superior content management capabilities and is largely used to format XML documents for the web
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic