How to prevent browser from caching form fields? [duplicate]
I have a textbox
in a form field that gets populated by the user. However currently (in Firefox 10) the user can navigate away from the page, then come back, and the input will be populated with its previous value. I think this creates for a confusing user experience, and would like to prevent it.
Is there a way to do this without manually resetting the value? I have tried changing the response to not cache as well as setting autocomplete='false'
with no luck.
Solution 1:
Try with autocomplete="off"
, but it will not work with all browsers
PS: duplicate...
Stop browser from filling textboxes with details
Make page to tell browser not to cache/preserve input values
Solution 2:
just add simple script in some global JS:
$("form :input").attr("autocomplete", "off");
Solution 3:
use meta in head
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="-1">
or Use
<% Response.CacheControl = "no-cache"; %>
<% Response.AddHeader("Pragma", "no-cache"); %>
<% Response.Expires = -1; %>
microsoft