EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: sdyson31 on November 16, 2014, 12:23:02 PM



Title: textbox control doesn't show remembered password
Post by: sdyson31 on November 16, 2014, 12:23:02 PM
I am trying to use EasyUI textbox control in asp.net form but some how browser is not showing my saved password? In normal scenario browser automaticly shows saved user name and password.

Is it some thing to do with this textbox control?


Title: Re: textbox control doesn't show remembered password
Post by: stworthy on November 16, 2014, 04:52:53 PM
Please refer to this topic http://www.jeasyui.com/forum/index.php?topic=3761.0


Title: Re: textbox control doesn't show remembered password
Post by: sdyson31 on November 18, 2014, 10:38:34 AM
Hi,

Thanks for your reply.

I have gone through the given link but i am still having problems. I am using textboxes on the content page.

In firefox, when i type username, it shows username in the list but when i select it,it doesn't give password.

In IE, username list is not shown at all.

Here is the code;

Code:
<asp:Content ContentPlaceHolderID="head" runat="server"></asp:Content>

<asp:Content ContentPlaceHolderID="ContentPlaceHolder1" runat="server">

<asp:Panel ID="pnlLogin" runat="server" DefaultButton="btnLogin">
    <div style="width:400px; margin:0 auto; color: #FFFFFF" id="ccc">
    <div class="easyui-panel" title="Login" style="width:400px;padding:30px 70px 20px 70px; margin-bottom:20px;">
<div style="margin-bottom:10px">
            <asp:TextBox ID="txtEmail" Width="160" runat="server" class="easyui-textbox" style="width:100%;height:40px;padding:12px;" data-options="prompt:'Username',iconCls:'icon-man',iconWidth:38"></asp:TextBox>    
          
            <asp:Label ID="lblEmail" CssClass="red-text" runat="server">&nbsp;</asp:Label>
        </div>
<div style="margin-bottom:20px">
            <asp:TextBox ID="txtPassword" Width="160" TextMode="Password" runat="server" class="easyui-textbox" style="width:100%;height:40px;padding:12px" data-options="prompt:'Password',iconCls:'icon-lock',iconWidth:38"></asp:TextBox>
   
            <asp:Label ID="lblPassword" CssClass="red-text" runat="server">&nbsp;</asp:Label>
        </div>

<div>              
            <asp:LinkButton ID="btnLogin" runat="server" class="easyui-linkbutton" data-options="iconCls:'icon-ok'" style="padding:5px 0px;width:100%;">Login</asp:LinkButton>
</div>

        
</div>        
    </div>
    </asp:Panel>
</asp:Content>