本文介绍了Server.MapPath直到虚拟目录的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

人们!
我对在托管我们站点的IIS上访问虚拟目录的路径有疑问.
我在IIS上创建了新站点,然后将发布的站点引用为虚拟目录.
siteName = MySite&虚拟目录= MySiteVD

现在,当我编码

Hi People !
I have a question about accessing the path of virtual directory at IIS in which our site is hosted.
I created new site on IIS and then referenced published site into it as a virtual directory.
i.e. siteName = MySite & Virtual Directory = MySiteVD

now when i code

Server.MapPath(".")


它向我返回直到 MySite 的路径,而我需要直到 MySiteVD
的完整路径
有没有办法获取完整的路径(包括虚拟目录)?


it returns to me the path till MySite whereas i need complete path upto MySiteVD

is there any way to get complete path (including virtual directory as well)?

推荐答案


这篇关于Server.MapPath直到虚拟目录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-15 18:57