• 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

Displaying xml data using xsl

 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
When i display the data of xml document giving a link
to an xsl file the xsl file includes a statement like
this:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
when i mistype or wrongly type any letter in the above link
and execute the xml file the IE5.0 browser displays
error. we are not using net conncections for executing
xml. so what is the necessity for using the above link.
Is this link indicates the dtd for the xsl.And is it included in the
browser itself.
Thanks
sivakumar.R
[This message has been edited by siva kumar r (edited February 07, 2001).]
 
Sheriff
Posts: 5782
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The declaration should be like this -
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
ie., xls should come after xmlns.
That should fix it
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic