June 2002
Intermediate to advanced
816 pages
28h 12m
English
Path
stringvar = Request.Path
Returns a String containing the virtual path of the current client request. The virtual path includes the name of the application root folder, subfolders in the request path, and the requested filename.
stringvar
A String variable to receive the file path.
The example displays the Path property to the user:
Sub Page_Load( ) Dim path As String path = Request.FilePath Message.Text = "The virtual path of the current request is: " & path End Sub
This property is identical to the FilePath property listed earlier in this chapter.
Read now
Unlock full access