在 HTML 中,我知道我可以指定相对路径,例如:
<a href="~/temp/Somecontent.xxx" />
我也想为我的服务器端代码设置相对路径。例如:
File.Exists("../myBusinessLibrary/Bin/Debug/myBusinessLibrary.dll");//where this is a library that supports the web project
找不到该文件。我看着Environment.CurrentDirectory
并得到:
"C:\\Program Files (x86)\\IIS Express"
我不认为我的程序集被复制到这个位置。有没有办法设置与服务器端代码一起使用的相对路径?