Click here to Skip to main content
15,867,704 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
I'm trying to implement the hash to use the back button and keep a history in my web application which uses AJAX.

When I press back, the hash is changed correctly but the page is not displayed as it should and does not keep the browsing history as to return to the previous page, this is like last accessed.

I'm using the following code, someone could help me, or tell me if I'm missing something?

In "onhashchange" charge corresponding page
JavaScript
     $ (document). ready (function () {
         window.onhashchange = function () {
             loadHash (window.location.hash);
         }
       
     });

     loadHash function (stHash) {
             alert (stHash);
             stUrl var = "";
             stParam var = "";
             if (stHash.indexOf ('/')> = 0) {
                 stHash.substring stUrl = (1, stHash.indexOf ('/'));
                 stParam = stHash.substring (stHash.indexOf ('/') + 1)
                 Goto (stUrl +. ​​"aspx?" + stParam);
             Else {}
                 stUrl = stHash;
                 Goto (stUrl +. ​​"aspx");
             }
      
     }


In "changeHas",I change the hash.

    
JavaScript
 changeHash function (stHash) {
         isChangeHash = false;
         window.location.hash = stHash;
     }

Thank you ...
Posted
Updated 16-Nov-12 1:02am
v2
Comments
David Cabrea 16-Nov-12 15:56pm    
I have the same problem. Help Please

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900