To get information about the currently requested URL in ASP.NET use the Request.Url class. For example to extract the information from the URL http://www.example.com/myApp/myPage.aspx?myQs=14 the Request.Url class provides the following properties:
Request.Url = "http://www.example.com/myApp/myPage.aspx?myQs=14" Request.Url.AbsolutePath: "/myApp/myPage.aspx" Request.Url.AbsoluteUri: "http://www.example.com/myApp/myPage.aspx?myQs=14" Request.Url.Authority: "www.example.com" Request.Url.DnsSafeHost: "www.example.com" Request.Url.Fragment: "" Request.Url.Host: "www.example.com" Request.Url.HostNameType: Dns Request.Url.IsAbsoluteUri: true Request.Url.IsDefaultPort: true Request.Url.IsFile: false Request.Url.IsLoopback: true Request.Url.IsUnc: false Request.Url.LocalPath: "/myApp/myPage.aspx" Request.Url.OriginalString: "http://www.example.com:80/myApp/myPage.aspx?myQs=14" Request.Url.PathAndQuery: "/myApp/myPage.aspx?myQs=14" Request.Url.Port: 80 Request.Url.Query: "?myQs=14" Request.Url.Scheme: "http" Request.Url.Segments: {string[3]} Request.Url.UserEscaped: false Request.Url.UserInfo: ""
Leave a Reply