[www-amaya] <none>

sir,

    Iam able to validate DTD for xml file using internet Explorer 5 by using Dom concept, using fallowing code

<html>
<body>
<script language="JavaScript">

var xmlDoc = new ActiveXObject("Microsoft.XMLDOM")
xmlDoc.async="false"
xmlDoc.validateOnParse="true"
xmlDoc.load("empxml.xml")

document.write("<br>Error Code: ")
document.write(xmlDoc.parseError.errorCode)
document.write("<br>Error Reason: ")
document.write(xmlDoc.parseError.reason)
document.write("<br>Error Line: ")
document.write(xmlDoc.parseError.line)

</script>
</body>
</html>

Is this possible in our Amaya browser.Any way to validate xml file using DTD in Amya browser

Received on Wednesday, 23 June 2004 11:51:55 UTC