取物理路径-asp.netPPT

时间:2024-05-13 13:36:13
【文件属性】:

文件名称:取物理路径-asp.netPPT

文件大小:943KB

文件格式:PPT

更新时间:2024-05-13 13:36:13

asp.net

取物理路径 案例名称:取物理路径 程序名称:5-16.aspx

Server.MapPath(".") 传回当前文件所在的物理路径:
<%=Server.MapPath(".")%> Server.MapPath("./") 传回当前文件所在的目录:
<%=Server.MapPath("./")%> Server.MapPath("./abc.txt")传回当前页面所在目录下abc.txt文件的位置
<%=Server.MapPath("./abc.txt")%> Server.MapPath("./abc") 传回当前文件所在目录下abc目录的位置
<%=Server.MapPath("./abc")%> Server.MapPath("abc.txt") 传回当前文件所在目录下abc.txt文件的位置
<%=Server.MapPath("abc.txt")%>


网友评论