vote up 3 vote down star

I need to be able to get at the full URL of the page I am on from a user control. Is it just a matter of concatenating a bunch of Request variables together? If so which ones? Or is there a more simpiler way?

flag

6 Answers

vote up 3 vote down check

I usually use Request.Url.ToString() to get the full url (including querystring), no concatenation required.

link|flag
vote up 4 vote down

Request.RawUrl

link|flag
vote up 1 vote down

if you need the full URL as everything from the http to the querystring you will need to concatenate the following variables

Request.ServerVariables("HTTPS") // to check if it's HTTP or HTTPS
Request.ServerVariables("SERVER_NAME") 
Request.ServerVariables("SCRIPT_NAME") 
Request.ServerVariables("QUERY_STRING")
link|flag
vote up 0 vote down

Thanks guys, I used a combination of both your answers @Christian and @Jonathan for my specific need.

"http://" + Request.ServerVariables["SERVER_NAME"] +  Request.RawUrl.ToString()

I don't need to worry about secure http, needed the servername variable and the RawUrl handles the path from the domain name and includes the querystring if present.

link|flag
1  
You should also know that RawUrl, unlike Request.Url, represents the original, unmapped request url if url mapping is being used. – harpo Sep 9 '08 at 5:44
vote up 0 vote down
Request.Url.AbsoluteUri

This property does everything you need, all in one susinct call.

link|flag
vote up 0 vote down

Request.Url.AbsoluteUri

it worked

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.