We are developing multilingual site. Multilingual is done it working ok in all language.
Problem is that ,
When i run site in firefox browser, on clicking language change button firefox ask to save password or not
Senario is that,
we have default.aspx page , where we have option(ie:Buttons) to change language and user login module where user enterd password and user id to login to its panel. code look like this.
bhushan13in
Member
54 Points
28 Posts
FireFox ask for save password onclicking language change button
Jan 25, 2012 06:30 AM|LINK
Hi ,
We are developing multilingual site. Multilingual is done it working ok in all language.
Problem is that ,
When i run site in firefox browser, on clicking language change button firefox ask to save password or not
Senario is that,
we have default.aspx page , where we have option(ie:Buttons) to change language and user login module where user enterd password and user id to login to its panel. code look like this.
<%--1: Language Change Option --%> <div > <%--For English --%> <asp:Button ID="btnEnglish" Text="" runat="server" CommandArgument="english" OnClick="btnEnglish_Click" meta:resourcekey="btnEnglishResource1" CausesValidation="False" CssClass="eng" /> <%--For Spanish --%> <asp:Button ID="btnSpanish" Text="" runat="server" OnClick="btnSpanish_Click" meta:resourcekey="btnSpanishResource1" CausesValidation="False" CssClass="spa" /> <%--For Polish --%> <asp:Button ID="btnPolish" Text="" runat="server" OnClick="btnPolish_Click" meta:resourcekey="btnPolishResource1" CausesValidation="False" CssClass="pol" /> </div> <%--2: Login Area --%> <table id="tblLogin" runat="server"> <tr> <td> <%--User Name Text Box --%> <asp:TextBox ID="txtUName" runat="server" CssClass="textBox" MaxLength="100" TabIndex="1" ValidationGroup="login" Width="148px" BorderStyle="None" BackColor="Transparent" meta:resourcekey="txtUNameResource1"></asp:TextBox> <cc1:TextBoxWatermarkExtender ID="TextBoxWatermarkExtender2" runat="server" TargetControlID="txtUName" WatermarkText="Username" WatermarkCssClass="watermark" Enabled="True"> </cc1:TextBoxWatermarkExtender> <cc1:TextBoxWatermarkExtender ID="TextBoxWatermarkExtender3" runat="server" TargetControlID="txtPwd" WatermarkText="Password" WatermarkCssClass="watermark" Enabled="True"> </cc1:TextBoxWatermarkExtender> <asp:RequiredFieldValidator ID="RequiredFieldValidator11" runat="server" ControlToValidate="txtUName" Display="Dynamic" ErrorMessage="Please enter username" ValidationGroup="login" meta:resourcekey="RequiredFieldValidator11Resource1" Text="*"></asp:RequiredFieldValidator> <%--Password Text Box --%> <asp:TextBox ID="txtPwd" runat="server" CssClass="textBox" MaxLength="45" TabIndex="2" TextMode="Password" ValidationGroup="login" Width="148px" BorderStyle="None" BackColor="Transparent" meta:resourcekey="txtPwdResource1"></asp:TextBox> <asp:RequiredFieldValidator ID="RequiredFieldValidator12" runat="server" ControlToValidate="txtPwd" Display="Dynamic" ErrorMessage="Please enter password" ValidationGroup="login" meta:resourcekey="RequiredFieldValidator12Resource1" Text="*"></asp:RequiredFieldValidator> <%--Lgoin Button--%> <asp:Button ID="btnLogin" runat="server" OnClick="btnLogin_Click" TabIndex="3" Text="Login" ValidationGroup="login" meta:resourcekey="btnLoginResource1" /> </td> </tr> </table>