How to disable the remember password on redirect.
I used autocomplete="off" since i could'nt achieve that in MOZILLA FIREFOX -30.0 and CHROME version 35m
It is working in INTERNET EXPLORER -8.
here is the solution,

 <form id="form1" runat="server">
     <div>
     <table>
      <tr>
        <td>UserName</td>
        <td>
            <asp:TextBox ID="txtName" runat="server" autocomplete="off"/>
        </td>
      </tr>
      <tr>
        <td>Password</td>
        <td>
             <asp:TextBox ID="txtPwd" runat="server" TextMode="Password" autocomplete="off" />
        </td>
      </tr>
      <tr>
        <td>
        </td>
        <td>
            <asp:Button ID="btnSubmit" runat="server" Text="Submit" onclick="btnSubmit_Click" />
        </td>
      </tr>
    </table>
    </div>
    </form>

Pls any one suggest solution for this issue.
THANKS

Are you sure the autocomplete attribute isn't working accross the browsers you mentioned? Maybe the problem is that your browsers are aet to cache the pages. Try hitting f5 on the browser to force the refresh.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.