I'm seeing a behavior in Umbraco Forms where if you fill in a form an submit it then return to that page in the same browser you see the values stored in the fields that were previously entered.
I'm presuming that this occurs because of some kind of storage in a cookie especially for use with server side validation or multi-step forms.
This is a problem for using the forms with confidential personal data on shared computers such as we are doing.
saving field values in browser
I'm seeing a behavior in Umbraco Forms where if you fill in a form an submit it then return to that page in the same browser you see the values stored in the fields that were previously entered.
I'm presuming that this occurs because of some kind of storage in a cookie especially for use with server side validation or multi-step forms.
This is a problem for using the forms with confidential personal data on shared computers such as we are doing.
Is there any way to stop this ocurring?
Hi John,
First try to explicitly setting the values as blank. For example:
That should stop browsers putting data in where it shouldn't. Alternatively, you can add the autocomplete attribute to the form tag:
Thanks
is working on a reply...