1. Request.AppRelativeCurrentExecutionFilePath, 获取当前执行请求相对于应用根目录的虚拟路径,以~开头,比如“~/Teletype.ashx"
2. Request.PhysicalApplication, 获取当前应用的物理路径,比如D:\我的文档\Visual Studio 2010\WebSites\WebSite2\
3. Request.PhysicalPath, 获取当前请求的物理路径,比如D:\我的文档\Visual Studio 2010\WebSites\WebSite2\Teletype.ashx
4. Request.RawUrl获得原始请求URL, Request.Url获得请求的URL, 区别涉及到URL重写的问题。 |