
- Forum
- Programming Talk
- XML
- Help to Resolve
Help to Resolve
This is a discussion on Help to Resolve within the XML forums, part of the Programming Talk category; I tried my first XML application as below. <!--Sample XML--!> <?xml version="1.0"?> <?xml-stylesheet type="text/css" href="style.css"?> <BOOKS> <BOOK> <TITLE CLASS="BLUE">WELCOME</TITLE> <AUTHOR>SAMPLE</AUTHOR> ...
-
Help to Resolve
I tried my first XML application as below.
<!--Sample XML--!>
<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="style.css"?>
<BOOKS>
<BOOK>
<TITLE CLASS="BLUE">WELCOME</TITLE>
<AUTHOR>SAMPLE</AUTHOR>
</BOOK>
</BOOKS>
But I got error and I could not find the error in the above program. Kindly help me to resolve the error.
-
Hi
<!--Sample XML -->
<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="style.css"?>
<BOOKS>
<BOOK>
<TITLE CLASS="BLUE">WELCOME</TITLE>
<AUTHOR>SAMPLE</AUTHOR>
</BOOK>
</BOOKS>
You have wrongly closed the comment on the first line. Check the above first line for correction.

Reply With Quote





