vote up 0 vote down star

I'm wondering how I can get the url from the browser in asp.net. I have a page that I use globalization/localization for and I am redirecting (via server not code) from www.spanishversion.com to www.englishversion.com but the url is masked to still say www.spanishversion.com. I want to get what the browser's url is but when I try things like

Request.Url.ToString() Request.Url.OriginalUrl Request.Path Request.RawUrl Request.ServerVariables["SERVER_NAME"]

it always comes back as www.englishversion.com. Is there a way that I can explicitly read the url from the browser?

Thanks.

flag

What sort of redirect are you doing? If you're doing a Server.Transfer, then you're out of luck. But a Response.Redirect shouldn't cause the issue you're having. – Dave Beer Aug 18 at 21:28

3 Answers

vote up 0 vote down

You can do this using Javascript, with location.href.

link|flag
Is there a way I could get to this from managed code? I'm needing the url in .net so I can set the current culture – Marcus King Dec 23 '08 at 1:33
An ugly solution would be to first render a skeleton page that contains no localised content, then use AJAX on the client side that passes the location.href to the server, and the server can return the content to fill the rest of the page, which the client can do with .innerHTML. Not recommended! – Greg Hewgill Dec 23 '08 at 1:42
vote up 0 vote down

Try with Request.Url.Host

link|flag
Tried that too. www.englishverison.com is what is returned. – Marcus King Dec 23 '08 at 1:34
vote up 0 vote down

try

HttpContext.Current.Request.Url.PathAndQuery

from MSDN

I use it to set variables in a master page.

link|flag

Your Answer

Get an OpenID
or

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