Jump to content

[SOLVED] How to delete drop down cache?


Abhi2k5

Recommended Posts

There's no such thing as a form cache. And because the title says drop down cache, I guess you're having a problem like the user clicks the back button and all of the elements are still as they were. In which case, you could try javascript to re-set the values of the boxes with a delay on page load. Something like:

 

setTimeout(document.forms[0].textboxname.value='', 50);

 

That would set the value of the textbox named textboxname to nothing after 50 milliseconds.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.