Different between ./ , ../ , ../../ , ~/ on file path(URL) in asp.net
These path components are shortcuts with specific meanings: . means the current path level (so if you’re on index.aspx and you reference ./style.css then the latter would have to be in the same folder as the former) .. means one path level up (so if you’re on /somefolder/index.aspx and you reference ../style.css then the latter would have to be in the parent folder of someFolder) / means the root … Read more