So, firstly, this is a website on which the user sees a list of unfinished tasks. It should work so that the user clicks the "Full" button, and then the item no longer appears, it seems not!
When they click "complete" on an element, my onclick function executes the SQL update statement and then returns response.redirect to this page, the sql statement is executed correctly, the page redirects, but the list element is still there!
If the user leaves the page and returns to it, the HAS list item has disappeared, it makes me think that the page is cached, however I stopped this with the following:
<meta http-equiv="Cache-Control" content="no-cache, must-revalidate, post-check=0, pre-check=0" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />
which is great for my BlackBerry Bold running OS 5.0, but not working for clients with BlackBerry Bold running OS 4.x
Any ideas on what this might be are most appreciated.
source
share