Hi,
I have written some XSLT which tries to access a second XML document with the following code:
<xsl:for-each select="document('Stylesheet.xml')/Page/Stylename[starts-with(@name, $style)]/style">
This always seems to check the local disk (C:) for the file not as a relative http URL file. How can i specify that stylesheet.xml is in the same web folder as the page that called it?
For example, when i test this code using RAD instead of looking in
http://localhost:9080/test/Stylesheet.xml it looks in C:/program files/..../...../....
Does this make any sense to anyone? Or am i just being stupid?
Matt