我在这个网站上使用Visual Studio Web Developer Express,比方说,我有以下目录结构......
<root>\
<root>\index.htm
<root>\images\
<root>\images\logo.png
<root>\myfolder\
<root>\myfolder\index.htm
在\ index.htm中,我可以将图像加载到带有...的页面中
<img src="images\logo.png" />
在\ myfolder \ index.htm页面中,我可以使用...
加载我的图像<img src="\images\logo.png" />
这在服务器上工作正常,但在VWD中,我只是得到了断开的链接图像。如何在VWD中设置此项以识别\ images \ logo.png指向根目录,然后指向images文件夹?
答案 0 :(得分:0)
在整个网站的属性页面窗口中,我看到了虚拟目录属性,我将其设置为
/
现在一切都在VWD中正确显示。