June 2002
Intermediate to advanced
816 pages
28h 12m
English
ApplicationPath
stringvar = Request.ApplicationPath
Returns a String containing the path to the virtual root of the current application.
stringvar
A string variable to receive the value of the ApplicationPath property.
The code example retrieves the ApplicationPath and writes it to the client using the Message label control:
Sub Page_Load( ) Message.Text = Request.ApplicationPath End Sub
The output of the code should be the name of the virtual root of the application to which the request was sent.
Read now
Unlock full access