vote up 1 vote down star

I'm developing a web app. In it I have a section called categories that every time a user clicked one of the categories an update panel loads appropriate content.

I want to after user clicked the category change the browser's address bar url from "www.mysite.com/products" to something like "www.mysite.com/products/{selectedCat}" without refreshing the page.

flag

5 Answers

vote up 4 vote down

I don't think this is possible (at least changing to a totally different address), as it would be an unintuitive misuse of the address bar, and could promote phishing attacks.

link|flag
Rather than being unintuitive, I think you should'n be able to do that because it could be misused for phishing attacks. Anyway, that's +1. – OregonGhost Dec 9 '08 at 10:42
Yes, that just occurred to me. Not a good idea. Thanks OregonGhost. – Galwegian Dec 9 '08 at 10:43
I do think its possible... Check out Wikimapia... As you drag the map around, the URL gets changed... – Shivasubramanian A Dec 9 '08 at 11:14
Yes, but it shouldn't be. – OregonGhost Dec 9 '08 at 11:16
@Shivasubramanian-a: I looked at Wikimapia, and indeed, they just use the technique suggested by somej and described by sanchothefat: just changing the anchor name. Which is safe against phishing... – PhiLho Dec 9 '08 at 14:38
vote up 7 vote down

I believe directly manipulating the address bar to a completely different url without moving to that url isn't allowed for security reasons, if you are happy with it being

www.mysite.com/products/#{selectedCat}

i.e. an anchor style link within the same page then look into the various history/"back button" scripts that are now present in most javascript libraries.

The mention of update panel leads me to guess you are using asp.net, in that case the asp.net ajax history control is a good place to start

link|flag
vote up 0 vote down

This cannot be done the way you're saying it. The method suggested by somej.net is the closest you can get. It's actually very common practice in the AJAX age. Even Gmail uses this.

link|flag
vote up 7 vote down

To add to what the guys have already said edit the window.location.hash property to match the URL you want in your onclick function.

window.location.hash = 'category-name'; // address bar would become http://example.com/#category-name
link|flag
vote up 1 vote down

Hi,

"window.location.hash"

as suggested by sanchothefat should be the one and only way of doing it. Because all the places that I have seen this feature, it's all the time after the # in URL.

link|flag

Your Answer

Get an OpenID
or

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