Hi all,
I am using
sammy.js with my
asp.net mvc web application for client-side routing so as to provide single page user experience. I have created a demo application which works fine in IE9+ and other modern browsers.
However, while running in IE8 on XP and Win7, I'm facing a strange problem. While browsing this demos site, IE8 remembers the back and forward navigation for initial browsing and then it totally forgets about the browsing history or steps I have taken to reach the
current page. So, the back button gets disabled as there is no browsing history linked. This is not happening in other browsers and they remember the pages I'm browsing.
The structure of my app is like this: A User
- comes to http://localhost:1098/
- is shown a login page as per `#/` route
- if authenticated, home page is shown which is a result of ajax post action.
- home-page have many options to go to details page which is the result of ajax post action.
Now, IE8 remembers only some of these steps but keeps deleting the history items in the browsing session on its own. I have tried using the script debugger of IE and no error was showed.
I'm now able to figure out the reason behind this strange problem. The codes works fine for other browsers. I have also tried resetting IE8 on XP and Win7.
It would be really helpful if anyone can tell me what am I missing or doing wrong.
Cheers