So far I have come up with the folling code:
<script type="text/vbscript">
set xmlDoc=CreateObject("Microsoft.XMLDOM"
xmlDoc.async="false"
xmlDoc.load("mssecure.xml"
path="/BulletinDatastore/Bulletins/Bulletin/@Title/text()"
set nodes=xmlDoc.selectNodes(path)
for each x in nodes
document.write(x.xml)
next
</script>
Two things I cant figure out:
1)I would like to be able to select multiple attributes to display. (@BulletinID, @Title, @Summary etc.)
2)I also do not know how to create carriage returns as using VbCrLf will not work. { ie., document.write(VbCrLf) }
Eventually I'm aiming at creating a list of BulletinID's to display...
-Jim Connors
</BODY>
</HTML>
<script type="text/vbscript">
set xmlDoc=CreateObject("Microsoft.XMLDOM"
xmlDoc.async="false"
xmlDoc.load("mssecure.xml"
path="/BulletinDatastore/Bulletins/Bulletin/@Title/text()"
set nodes=xmlDoc.selectNodes(path)
for each x in nodes
document.write(x.xml)
next
</script>
Two things I cant figure out:
1)I would like to be able to select multiple attributes to display. (@BulletinID, @Title, @Summary etc.)
2)I also do not know how to create carriage returns as using VbCrLf will not work. { ie., document.write(VbCrLf) }
Eventually I'm aiming at creating a list of BulletinID's to display...
-Jim Connors
</BODY>
</HTML>