Is it possible to pass a URL variable into xsl.
EG. http:www.somedomain.com/index.aspx?myVar=test&myVar2=anotherTest
I\'d like to be able to use t
Sure, you can. Use xsl:param element in xsl:stylesheet element and pass parameter from your XSL engine.
xsl:param
xsl:stylesheet
Then use string-functions, e.g.:
|