在.Net中,Server.MapPath方法用于获取指定虚拟路径的物理路径。
语法:
Server.MapPath(path)
参数:
返回值:
示例:
string physicalPath = Server.MapPath("~/images/logo.png");
在上面的示例中,Server.MapPath方法将虚拟路径"~/images/logo.png"转换为物理路径,并将其存储在变量physicalPath中。