Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a scenario like below:

I navigate to the reader page with the below form data

<form id="mainForm" action="Reader.aspx" method="post">
        <input type="hidden" id="bookId" name="bookId" />
        <input type="hidden" id="startPageId" name="startPageId" />
</form>

Initially the hidden variable values will be bookId=1 and startPageId=5

I navigate between the pages by using javascript and assume the startPageId will now change to 8

I want the new value to be stored in the above form data and want to submit the same page with different form data bookId=4 startPageId=10

When I click on the browser back button, I want the user to be navigated back to the BookId=1 and startPageId=8

Can anyone help me how I can achieve this?

share|improve this question
Why not use ASP.NET to set those values directly? – CD Sanchez Sep 29 '10 at 5:26
Hi Daniel, I can to set the values using document.getElementById("startPageId").value="8" but the problem here is I am submitting the same page once again with different values. I need the values which are in browser history to be changed so that when I can click on Back button, I can navigate to the same page. – Amar Sep 29 '10 at 6:42
you can get the browser history values, you must think a different design. – Aristos Sep 29 '10 at 7:00

2 Answers

You can user JHistory, check out this. http://plugins.jquery.com/project/jHistory http://www.overset.com/2008/06/18/jquery-history-plugin/

share|improve this answer

It will work correctly in FF and Chrome, it means that the values that you set using javascript will be the same values that you have set. I had problems in IE (then I worked on similar functionality it was IE7). To resolve it I had to store required values in Session object and download it using ajax each time the page is shown (even when back button click). Don't know if it helpful in your situation. :)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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