I have a CSS link that looks like this:
<link href="../../css/WW/parts.css" type="text/css" rel="stylesheet" />
But now I want the CSS directory not to be linked to as "../../", but as "~/", i.e from the top of the project.
So I changed the CSS call to:
<link href="~/project/css/WW/parts.css" type="text/css" rel="stylesheet" />
But what happens is that the path is added to the current paht, instaed of going to the top of the project:
http://localhost:3333/Project/Apps/WW/~/project/css/WW/parts.css
What am I doing wrong? What's the right way to go about this?