I need to test some XSLT that is being passed several global parameters so for example:
If I have 2 parameters displayNumber and pullDate and a my URL is www.abcdefg
If I then want to specify a value for each parameter, is there a character that should sit between the two parameters?
This has nothing to do with XSLT.
The syntax for specifying query-string parameters in a URL is well-known:
The first name-value pair is preceded by a question mark '?'
character.
Every next name-value pair is preceded by an ampersand '&'
character.
Every name-value pair has the form: name=value
Example:
http://www.xyz.com/somePath?param1=value1¶m2=value2¶m3=value3