How do I disable autocomplete in all my webpages without writing any code into page.
I need to know if there is any way of setting autocomlete to off in web.config.
How do I disable autocomplete in all my webpages without writing any code into page.
I need to know if there is any way of setting autocomlete to off in web.config.
Place the below code in your master page (if you have one):
$(document).ready(function () { $("input").attr("autocomplete", "off"); });
If you don't have one, put on every page.
There is no way to do that in web.config.