About PathInfo in ASP.NET

xiaoxiao2021-03-06  118

Original: http://west-wind.com/weblog/posts/269.aspx

Request Property

Function and Example

ApplicationPath Returns the a Web Server Relative path to your application root / westwindwebstore /

PhysicalApplicationPath Returns a local file system path to your application root d: / inetpub / wwwroot / westwindwebstore /

PhysicalPath Returns the full file system path to the currently executing script D: /inetpub/wwwroot/WestWindWebStore/Item.aspx CurrentExecutionFilePath FilePath Path In most situations all of these return the virtual path to the currently executing script relative to the Web Server root /. WestwindWebStore / item.aspx pathInfo Returns any extra path following the script name Rarely used -.. this value is usually blank /WestwindWebStore/item.aspx/ExtraPathInfo RawUrl Returns the application relative URL including querystring or pathinfo /WestwindWebStore/item.aspx?sku = Wwhelp30

Url Returns the fully qualified URL including domain and protocol http://www.west-wind.com/Webstore/item.aspx?sku=WWHELP30 Page.TemplateSourceDirectory Control.TemplateSourceDirectory Returns the virtual path of the currently executing control (or page) . Very useful if you need to know the location of your assex control instead of the location of the page. / Westwindwebstore / Admin

转载请注明原文地址:https://www.9cbs.com/read-100905.html

New Post(0)