[CLOSED] [#1154] Chrome saving login/password

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1

    [CLOSED] [#1154] Chrome saving login/password

    in v1.7, Chrome would prompt to save the password on login and then it would save it for future use. in v3.2.1, it doesn't. it is as if the password field isnt properly registered with the browser.
    Thanks,
    /Z


    <%@ Page Language="C#" %>
    
    
    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
    
    
    <!DOCTYPE html>
    
    
    <html>
    <head id="Head1" runat="server">
        <title>Ext.NET v3.2.1 Example</title>
    </head>
    <body>
        <form id="Form1" runat="server">
            <ext:ResourceManager ID="ResourceManager1" runat="server" />
                <ext:Container runat="server" Layout="FormLayout">
                    <Items>
    
    
                   <ext:FormPanel 
                        runat="server" 
                        ID="loginForm"
                       Width="400"
                        Border="false"
                        BodyStyle="background:transparent;" >
                        <Items>
                            <ext:TextField 
                                ID="user" 
                                runat="server" 
                                FieldLabel="Username" 
                                AllowBlank="false"
                                BlankText="Username is required."
                                Text=""
                                AutoFocus="true"
                                AutoFocusDelay="100"
                                >
                                </ext:TextField>
                             <ext:TextField 
                                ID="txtPassword" 
                                runat="server" 
                                InputType="Password" 
                                FieldLabel="Password" 
                                AllowBlank="false" 
                                BlankText="Password is required."
                                Text=""
                                />
                        </Items>
                        <Buttons>
                            <ext:Button ID="test44" runat="server" Text="Login" Icon="Accept">
                                <DirectEvents>
                                    <Click 
                                        Url="/ta/yyy/test/" 
                                        Timeout="60000"
                                        FormID="loginForm"
                                        CleanRequest="true" 
                                        Method="POST">
                                        <EventMask MinDelay="250" />
                                    </Click>
                                </DirectEvents>
                            </ext:Button>
                        </Buttons>
                    </ext:FormPanel>
                    </Items>
                </ext:Container>
      
        </form>
    </body>
    </html>
    Last edited by Daniil; Dec 25, 2015 at 12:04 PM. Reason: [CLOSED] [#1154]

Similar Threads

  1. [CLOSED] Password fields TextField saves the password
    By ucaneto in forum 2.x Legacy Premium Help
    Replies: 1
    Last Post: Oct 29, 2014, 3:38 PM
  2. [CLOSED] Desktop - saving user configuration and restoring it after login
    By inteligencija in forum 2.x Legacy Premium Help
    Replies: 9
    Last Post: Jul 25, 2012, 2:19 PM
  3. Replies: 0
    Last Post: Feb 23, 2012, 6:18 AM
  4. Implement a Password Meter to a Password Field
    By sudantha in forum 1.x Help
    Replies: 1
    Last Post: Jan 15, 2012, 6:59 AM
  5. login problem with Ext Login Control
    By Bruce2010 in forum 1.x Help
    Replies: 1
    Last Post: Nov 30, 2010, 4:35 PM

Tags for this Thread

Posting Permissions