Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我们使用 Windows 身份验证模式时,我们如何在 ASP.NET 应用程序中禁用浏览器的“记住密码”?有没有可能我们可以通过代码来处理它?
Try setting:
autocomplete="off" in the form tag.
autocomplete="off"
<form id="form" method="post" autocomplete="off">