<html>
  <head>
  <script language='javascript'>
  var xml_doc = new ActiveXObject("Microsoft.XMLDOM");
  xml_doc.async = false;
  xml_doc.load("booklist.xml");
  
  var i, n_elems, elems = xml_doc.getElementsByTagName("isbn");
  n_elems = elems.length;
  for (i = 0; i < n_elems; i++)
     document.write(elems[i].firstChild.nodeValue + "<br>");
  </script>
  </head>
  <body>
  javascript reads xml<P>
  
  <%
   Set objXML = Server.CreateObject("Microsoft.XMLDOM")
   
  
   objXML.async = False
   objXML.Load ("booklist.xml")
  
   
   Set objLst = objXML.getElementsByTagName("title")
  
      for each nodd in objLst
            response.write nodd.childnodes(1).text&"<br>"
      next
  %><p>
  asp reads xml 
  </body>
  </html>

                
---------------------------------
 Enjoy this Diwali with Y! India Click here

[Non-text portions of this message have been removed]



------------------------ Yahoo! Groups Sponsor --------------------~--> 
1.2 million kids a year are victims of human trafficking. Stop slavery.
http://us.click.yahoo.com/WpTY2A/izNLAA/yQLSAA/saFolB/TM
--------------------------------------------------------------------~-> 

 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/AspClassicAnyQuestionIsOk/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to