I want to disable the save password prompt in all browsers and hence I can avoid the auto fill for the password filed.
My code is working fine on Chrome But it wont work for me in IE11 and FireFox30+.
Here is my code:
<form id="form1" runat="server" autocomplete="off">
<div id="Login-body" class="clearfix">
<ul>
<li><span>UserName: </span>
<asp:TextBox ID="TextBox1" runat="server" autocomplete="off" />
</li>
<li><span>Password: </span>
<asp:TextBox ID="TextBox2" runat="server"
TextMode="Password" autocomplete="off" />
</li>
</ul>
</div>
<asp:Button ID="Button1" runat="server" Text="Login" />
</div>
</form>
Any thoughts on the same are highly appreciated.