Using Java Script to Display XML Data
In this article, you learn how to use Java Script to display an XML document's data as an html page. You create a script that you can use to traverse any XML document to display information about its elements. And you create a script that you can use to check any XML document for errors. More ...
Introduction to XML Schemas
This article explains what an XML Schema is and the many usefull purposes thay provide for with code examples. More ...
Create a Database Using Only Notepad
You can create your own database using only Windows Motepad, or any ASCII text editor, and use the database with Internet Explorer. Your database can be used as an address book, recipe file, collection catalog, or any of a thousand uses. More ...
XML Parsers
Before any work can be done with an XML document it needs to be broken down into its constituent parts with some sort of internal model built up, that job is done by a piece of software called a parser. More ...
Transforming XML with XSLT
The instructions for formatting XML documents is in a specification called XSLT (for Transformations) This article explains how to use XSLT to transform XML documents. The end result might be another XML document or an HTML document. More ...
Easy XML to Connect Content to Web Page
This is an example that lets you store your websites content in text files separate from your web pages. The web pages and the content are combined using XML. You will learn some basic XML. More ...
XML Namespaces Made Simple
If you're going to use XML for more than just your own local purposes, you need a way to validate it. Today, this is done using a schema. But don't attempt to use a schema without an understanding of namespaces. More ...
Extensible Stylesheet Language (XSL) Basics
Although XML and XSL are very complex technologies, with the simple examples in this article you learn that you don't need extensive knowledge to do some powerful things. You can store your data in an XML document and use a basic XSL style sheet to select, filter, and sort the elements of an XML document for display as HTML in a Web browser. More ...
Where to Run XSLT Files
Unfortunately, unlike html and JavaScript, most browsers do not have a built-in XSLT processor, so you won't be able to test XSLT on your desktop. An alternative is to use one of the free online XSLT processors. More ...