vote up 3 vote down star
4

I have an asp.net ajax website, it full of things happen on the same page without page reload, such as sorting records, paging,... When the user go to another page in the same site and press the browser back button, how can i make the browser save the page state to return to it with the preselected options such as sorting option, page number in the paging.

I knew that there is a history control in the new .net 3.5 but its working in the same page not while navigating from a page to another. Also i am looking for a solution which work in all browsers.

Thanks,

flag

have u tried googling for it? – sunnyjava Mar 15 at 18:32
it works in both cases (the ASP.NET AJAX history control). It works on actions within the page as well as when you navigate and come back to a page. – spoon16 Mar 15 at 20:46
@speen16 can you please show my example for history control managing more than one page? i can't find – Amr ElGarhy Mar 16 at 18:18

4 Answers

vote up 5 vote down check

You dont need 3.5 for the history control, check ScottGu's blog here

Also check if this article helps

link|flag
vote up 1 vote down

You do what the history plugin suggested above does. I'm assuming under the hood, this is what is going on. When your async-postback comes back to the client side for example, do a JavaScript call to window.location = 'somePage.aspx#anchor1' (an old school HTML anchor), then the next async-postback once back on the client would do window.location = 'somePage.aspx#anchor2', etc. GMail does this when it redirects to your inbox or other labels or folders in your e-mail.

Hope that helps, Nick

link|flag
vote up 0 vote down

I've heard that this is usually solved by using an iframe instead of XMLHttpRequest. I don't know how to incorporate this advice in an ASP.Net webapp.

link|flag

Your Answer

Get an OpenID
or

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