|
|
|
The Url and UrlReferrer properties of the Request ASP.NET object return a reference to the URL of the page and the URL of the page that referred to this one. Both properties return a System.Uri object; you can query the properties of this object to learn more about the address of the page that so you don't have to parse the string yourself: |
Click here to copy the following block | ' Get information on the referrer for this request. Dim url As System.Uri = Request.UrlReferrer Debug.WriteLine(url.AbsoluteUri) ' => http://www.mysite.com/default.aspx Debug.WriteLine(url.AbsolutePath) ' => /default.aspx Debug.WriteLine(url.Host) ' => http:/www.mysite.com Debug.WriteLine(url.Port) ' => 80 Debug.WriteLine(url.IsLoopback) ' => False |
You can also use an Uri object to parse a URL string that the user typed in a field or that you've received in an argument: |
Click here to copy the following block | Dim url As New System.Uri("http://www.mysite.com/index.aspx?id=123") Dim path As String = url.AbsolutePath ' => /index.aspx Dim queryString As String = url.Query ' => id=123 |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
 |

|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|