Hi,
We're using Win2k3 IIS6. I have a little
vb script that I want to include in all files on the website.
This vbscript refers to a series of style sheets. The stylesheets are stored in a directory called 'css' in the root of the site.
In the vbscript I refer to them like this:
Code:
<link href="/css/skins/default.css" rel="stylesheet"...
This seems to work in all pages that I tested, even if the pages are in different directories.
This is great, but I want to be sure it actually works. I thought I would have to refer to the stylesheets like this:
Code:
<link href="../../css/skins/default.css" rel="stylesheet"...
.
That is, including the dots and dashes at the start. I don't seem to have to do this. Is that right?
Is this the difference between virtual and relative paths or something?
cheers
s