避免 INPUT 密碼漏洞 ->Turn off autocomplete for input
HTML
<input type="text" name="cc" autocomplete="off" />
.NET
<asp:textbox id="txt_userID" tabIndex="1" runat="server" Width="200px" TextMode="Password" AutoCompleteType="Disabled">
HTML
<input type="text" name="cc" autocomplete="off" />
.NET
<asp:textbox id="txt_userID" tabIndex="1" runat="server" Width="200px" TextMode="Password" AutoCompleteType="Disabled">