How to use variables in your XML declarations
Published by Nicholas Dunbar on January 5th, 2012
How to use variables for parts of your XML instead of static XML declarations.
You can easily create XML through string manipulation like the following:
var myXML = new XML("this is the link");
but this is slow and requires that the XML be...