Server.MapPath()方法:

Server.MapPath("") :返回当前页面所在的物理文件路径

Server.MapPath("/") :返回应用程序根目录所在的物理文件路径

Server.MapPath("./") :返回当前页面所在的物理文件路径

Server.MapPath("../"):返回当前页面所在的上一级的物理文件路径

Server.MapPath("~/"):返回应用程序的虚拟目录(路径)

Server.MapPath("~"):返回应用程序的虚拟目录(路径)

可以在网页上加入下面的代码,就可以实时查看了:

<%=Server.MapPath("")%></br>
<%=Server.MapPath("/")%></br>
<%=Server.MapPath("./")%></br>
<%=Server.MapPath("../")%></br>
<%=Server.MapPath("~")%></br>
<%=Server.MapPath("~/")%></br></br></br>
<%=Server.MapPath(@"/Soking/TravelNoteImg/")%></br>