Forum Moderators: open
I've found this to be a problem with IE and the DTD, so whenever I remove the DTD from my XML file . . . IE will display all the XML data . . . except for the hyper link!
How can I get the best of both worlds?
-jlr1001
Worth trying that first.
<!DOCTYPE test [
<!NOTATION link system "text/html">
<!ELEMENT a (#PCDATA)>
<!ATTLIST a
xml:link CDATA #FIXED "simple"
href CDATA #REQUIRED
inline (true¦false) true
content-role CDATA ""
content-title CDATA ""
title CDATA ""
role CDATA ""
actuate (user¦auto) user
show (new¦replace¦embed) replace
behavior CDATA ""
>
]>
And here would be a sample of the xml code:
<?xml version="1.0"?>
<test>
<name>John Doe</name>
<city>London</city>
<link><a href="http://www.yahoo.com">website</a></link>
</test>
Thanks again.
-jlr1001