I am creating a Registration form and following is the design code of Password and Confirm password field \[code\]<tr><td class="style14"> <asp:Label ID="lblPass" runat="server" Text="Password"></asp:Label> <asp:TextBox ID="txtPass" runat="server" Width="150px" EnableTheming="True" TextMode="Password" ></asp:TextBox></td></tr><tr><td class="style23"> <asp:Label ID="lblCnfPass" runat="server" Text="Confirm Password"></asp:Label> <asp:TextBox ID="txtCnfPass" runat="server" Width="150px" TextMode="Password" CausesValidation="True"></asp:TextBox> <asp:CompareValidator ID="CompareValidator1" runat="server" ErrorMessage="Paswword doesnot Match" ValidationGroup="register" ControlToCompare="txtCnfPass" ControlToValidate="txtPass">Paswword doesnot Match</asp:CompareValidator> </td><td> </td></tr>\[/code\]The problem is when i run the page the Password TextBox is filled with some values like in the image.How to remove that.? One more point is that when i changed TextMode property from password to singleline then there was no such problem