Again at w3schools.com... 
In the XPath tut, they had some "try it yourself" code that kinda irked me. I am unfamiliar with VB and ASP, which is what this looks like:
More importantly, the "CreateObject("Microsoft.XMLDOM"). Is this ASP or VB or...? Will I have to learn this language to utilize XML, XSLT, XPath, etc?
-S
[edit]
I'm guessing that
Sets up a function/variable, much like something to the effect of
in JavaScript. However, the "path" is not defined anywhere. It's just... there.
Again, I'm new to this, so bear with me.
[edit]

In the XPath tut, they had some "try it yourself" code that kinda irked me. I am unfamiliar with VB and ASP, which is what this looks like:
Code:
<html> <body> <script type="text/vbscript"> set xmlDoc=CreateObject("Microsoft.XMLDOM") xmlDoc.async="false" xmlDoc.load("cdcatalog.xml") path="/catalog/cd/price" set nodes=xmlDoc.selectNodes(path) for each x in nodes document.write("<xmp>") document.write(x.xml) document.write("</xmp>") next </script> </body> </html>
-S
[edit]
I'm guessing that
Code:
set nodes=xmlDoc.selectNodes(path)
Code:
function sayHi(message){ alert(message) } sayHi("Hello")
Again, I'm new to this, so bear with me.
[edit]
Comment