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.
我有一个小问题。每当我登录并将记住密码选项设置为是时,下一页包含一个表单,它还包括用户名和密码文本框。他们会自动填写相同的用户名和密码。为什么会这样?请告诉我如何解决它
它的浏览器属性。要停止这种情况,您可以在输入类型中设置 autocomplete="off"。
<input type="text" name="Username" autocomplete="off">
以及AutoCompleteType="disable"使用时asp:TextBoxes
AutoCompleteType="disable"
asp:TextBoxes
您也可以将其放在表单标签上。请注意,这并非在所有浏览器中都能始终如一地工作。