Hi,
I have an asp page with for example:
<div id="introText"> </div>
next to this is a button. when then user clicks on the button I fire some javascript
function doThisWhenButto nClicked() {
document.getEle mentById('intro Text').innerHTM L = "Hello Everybody";
}
so once the button is clicked I see "Hello Everybody" inside the div.
No problem so far.
However if i visit another page on my site and then click the back button to return to the page "Hello Everybody" has gone - ie it's not cached i assume ??
Can anyone help - i'm using Chrome.
Thanks on advance
I have an asp page with for example:
<div id="introText"> </div>
next to this is a button. when then user clicks on the button I fire some javascript
function doThisWhenButto nClicked() {
document.getEle mentById('intro Text').innerHTM L = "Hello Everybody";
}
so once the button is clicked I see "Hello Everybody" inside the div.
No problem so far.
However if i visit another page on my site and then click the back button to return to the page "Hello Everybody" has gone - ie it's not cached i assume ??
Can anyone help - i'm using Chrome.
Thanks on advance
Comment