XML in Asp.Net
Home :: ASP.NET :: XML
The best definition of XML* I have heard is…
"XML is a case-sensitive markup language that defines the structure of data in an open and self describing manner. XML docs contain tags that assign meaning to the content. XML does not define how data is displayed or used. "
It is inevitable you will have to interface with XML at some stage with .Net
Well formed XML docs must meet three requirements…
- One root element
- Properly nested child elements
- Begin and end tags must exist and match
They will have
- Processing instruction
- Elements
- Attributes (optional to elements)
- Comments
For these examples I will use the Bookstore examples using these files
bookstore.xml
bookstore2.xml
bookstore2.xsl
XSLTFile.xsl
TutorialsThe rest of this page is hidden, you must be a member to view itTo become a member and get immediate access to the course please join here Free!
Next >> Format XML
|