15 April 2011

Disable remember password option in Firefox/Internet Explorer In Code

Disable remember password option in Firefox/Internet Explorer In Code

For Disable remember password option in Firefox/Internet Explorer In Form
<form id="loginForm" autocomplete="off">
</form>

For Disable remember password option in Firefox/Internet Explorer In Particular Controls
<asp:TextBox ID="TextBox1" autocomplete="off" runat="server" TextMode="Password">

No comments:

Post a Comment

Comments Welcome

Finding duplicate records in SQL Server

 Finding duplicate records in SQL Server 1. The GROUP BY and HAVING Method This is the most standard approach. It is best used when you on...