June 2002
Intermediate to advanced
816 pages
28h 12m
English
RawUrl
stringvar = Request.RawUrl
Returns a String containing the raw URL of the current request. The raw URL consists of the portion of the URL following the domain information. Thus, for the URL http://search.support.microsoft.com/kb/c.asp, the raw URL is /kb/c.asp. The raw URL includes the query string, if one is present.
stringvar
A String variable to receive the raw URL.
The example writes the RawUrl property to the browser:
Sub Page_Load( ) Dim stringvar As String stringvar = Request.RawUrl Message.Text = "The raw URL is: " & stringvar End Sub
Read now
Unlock full access