I have an ASP.Net application that uses jQuery's AJAX POST method to update the DOM.
- user enters a date
- user clicks a link button
- JQuery ajax post call to a database loads a div with requested data.
Everything works fine, unless the user manually refreshes the page in IE.
If they make a change then hit the browser refresh button, then follow those three steps again, it doesn't show the updated data that they just entered even though the database has been properly updated.
It shows the original data.
They have to close the browser altogether and re-open it to see the changes.
This only happens in IE.
FF and Chrome show the changes if they refresh.
What am I missing here?