FancyPrairie
Programmer
I've created a web page (.html using vbscript) that includes a couple of files using relative addressing. However, it fails to find the files whose extensions are .cls or .udl. It appears that Windows Server 2003 does not support parent paths ('..'). I have checked an option that allows this, but to no avail. So I thought I would setup a virtual directory. I believe I set it up correctly, but my code still won't work.
Background...
If I open the page using a share name (i.e. \\server\test\path\path2\MyFile.html) the relative addressing works. However, if I open the page like this the relative addressing does not work.
The path to my virtual directory is E:\test\path\path2 with an alias of MyPath2.
My vbscript looks like this:
Is my syntax correct? I'm at a lost as to how to make this work.
Background...
If I open the page using a share name (i.e. \\server\test\path\path2\MyFile.html) the relative addressing works. However, if I open the page like this the relative addressing does not work.
The path to my virtual directory is E:\test\path\path2 with an alias of MyPath2.
My vbscript looks like this:
Code:
<SCRIPT language=vbscript src="MyPath\MyClass.cls"> </Script
Is my syntax correct? I'm at a lost as to how to make this work.