I don't necessarily need to run it at server, however, I would like to use the ~/js/somefile.js syntax.
Previously, I had just set everything with Absolute paths and set my project to be at the root level. SO, I'd just declare all my stylesheets, background images and javascript files something like /css/somefile.css
However, for this ...
I'm looking at a bit of script and I'm not sure what the "//" does.
$ResultsFolder = "./" . "Results";
$CompanyFolder = $ResultsFolder."//".$CompanyName;
...
I have inherited a web site that has all of the paths set using relative paths, that only work when the site is located in the web root.
I have put the site in a virtual directory, and none of the paths work correctly.
<img src="/img/logo/BadCo.gif" width="156" height="55" alt="BadCo" />
I can resolve this as follows:
<img src='<%= ...