vote up 3 vote down star

I'm writing a simple photo album app using ASP.NET Ajax.
The app uses async Ajax calls to pre-load the next photo in the album, without changing the URL in the browser.

The problem is that when the user clicks the back button in the browser, the app doesn't go back to the previous photo, instead, it navigates to the home page of the application.

Is there a way to trick the browser into adding each Ajax call to the browsing history?

flag

50% accept rate

6 Answers

vote up 2 vote down

The asp.net site has an article about Managing Browser History and Back Button Support in ASP.NET AJAX

link|flag
vote up 2 vote down

Many websites make use of a hidden iframe to do this, simply refresh the iframe with the new URL, which adds it to the browsing history. Then all you have to do is handle how your application reacts to those 'back button' events - you'll either need to detect the state/location of the iframe, or refresh the page using that URL.

link|flag
vote up 0 vote down

The 3.5 SP1 update has support for browser history and back button in ASP.NET ajax now.

link|flag
vote up 0 vote down

For all solutions about the back button, none of them are "automatic". With every single one you are going to have to do some work to persist the state of the page. So no, there isn't a way to "trick" the browser, but there are some great libraries out there that help you with the back button.

link|flag
vote up 0 vote down

Info: Ajax Navigation is a regular feature of the upcoming IE8.

link|flag
Interesting. Thanks! – Alexander Prokofyev Sep 24 '08 at 6:59
vote up 0 vote down

Follow the article "AJAX: How to Handle Bookmarks and Back Buttons" HERE

link|flag

Your Answer

Get an OpenID
or

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