asp.net 文件路径之获得虚拟目录的网站的根目录

Onida ·
更新时间:2024-11-10
· 628 次阅读

string Server.MapPath(string path)
  返回与Web服务器上的指定虚拟路径相对应的物理文件路径。
  Server.MapPath(Request.ServerVariables["PATH_INFO"])
   Server.MapPath("/")
   Server.MapPath("")
  Server.MapPath(".")
   Server.MapPath("../")
   Server.MapPath("..") 
Page.Request.ApplicationPath
(HttpContext.Current.Request.PhysicalApplicationPath);
  以上的代码在http://localhost/EnglishClub/manage/WebForm1.aspx页面
  运行结果:
  C:\Inetpub\wwwroot\EnglishClub\manage\WebForm1.aspx
  
  C:\Inetpub\wwwroot\
  C:\Inetpub\wwwroot\EnglishClub\manage
  C:\Inetpub\wwwroot\EnglishClub\manage
  
  C:\Inetpub\wwwroot\EnglishClub\
  C:\Inetpub\wwwroot\EnglishClub
  C:\Inetpub\wwwroot\EnglishClub\
由以上可以知道:
要想获得要是建立的虚拟目录的网站的根目录可以这样使用:
Server.MapPath(Page.Request.ApplicationPath) 您可能感兴趣的文章:apache中为php 设置虚拟目录解析在apache里面给php写虚拟目录的详细方法Apache 添加虚拟目录注意事项Apache 虚拟目录和默认首页的设置php 在windows下配置虚拟目录的方法介绍Serv-U中虚拟目录的设置方法(文字+图文)asp.net Cookie跨域、虚拟目录等设置方法PHP编程之设置apache虚拟目录



ASP.NET 虚拟目录 net 根目录 ASP

需要 登录 后方可回复, 如果你还没有账号请 注册新账号