[CLOSED] Problem with InputType="Password"

  1. #1

    [CLOSED] Problem with InputType="Password"

    Hello!

    I'm using a TextField as InputType="Password" and the special caracters such as !@#$% are changed for the repective numbers, for example @ = 2.

    Please help me to solve this problem.

    Thanks in advance.


    Oliver
    Last edited by Daniil; Apr 10, 2013 at 1:56 PM. Reason: [CLOSED]
  2. #2
    Geoffrey McGill
    Founder
  3. #3
    Hi Geoffrey,

    If you fill @1010 in the field Password in the EXT.NET Login example https://examples2.ext.net/#/Layout/FormLayout/Login/, when you click login, will show a message Password 21010, not @1010. That's my problem.

    Thanks for help.

    Oliver
  4. #4
    HI..Oliver

    I type @1010 in the password and the sample it's ok
    Username=Demo
    Pass = @1010

    Not response with: 21010

    Browser FireFox

    Thank
    Aurelio
  5. #5
    Quote Originally Posted by Aurelio View Post
    HI..Oliver

    I type @1010 in the password and the sample it's ok
    Username=Demo
    Pass = @1010

    Not response with: 21010

    Browser FireFox

    Thank
    Aurelio
    Hi Aurelio, You are right, in FireFox an IE works fine, but I'm using the browser Google Chrome and there I have the problem. I forgot to mention this.

    Thanks!

    Oliver
  6. #6
    Hi,

    I can't reproduce in Chrome as well.

    Are you typing "@" with Shift+2? Can you ensure it actually types "@"?

    Also could you copy paste "@something" to the password field and click the Login button? What password does it show?
  7. #7
  8. #8
    Hello!

    I've tried the following sample with the same version of Chrome and it works correct:

    <%@ Page Language="C#" %>
    
    <%@ Register assembly="Ext.Net" namespace="Ext.Net" tagprefix="ext" %>
    
    <script runat="server">
        protected void Button1_Click(object sender, DirectEventArgs e)
        {
            X.Msg.Alert("Name + Password", txtUsername.Text + " | " + txtPassword.Text).Show();
        }
    </script>
    
    <!DOCTYPE html>
    
    <html>
    <head runat="server">
        <title>Desktop - Ext.NET Examples</title>    
    </head>
    <body>
        <form runat="server">
            <ext:ResourceManager runat="server" />
            
            <ext:Window 
                ID="Window1" 
                runat="server" 
                Closable="false"
                Resizable="false"
                Height="150" 
                Icon="Lock" 
                Title="Login"
                Draggable="false"
                Width="350"
                Modal="true"
                BodyPadding="5"
                Layout="Form">
                <Items>
                    <ext:TextField 
                        ID="txtUsername" 
                        runat="server" 
                        FieldLabel="Username" 
                        AllowBlank="false"
                        BlankText="Your username is required."
                        Text="Demo"
                        />
                    <ext:TextField 
                        ID="txtPassword" 
                        runat="server" 
                        InputType="Password" 
                        FieldLabel="Password" 
                        AllowBlank="false" 
                        BlankText="Your password is required."
                        Text="!@#$%^&*("
                        />
                </Items>
                <Buttons>
                    <ext:Button ID="Button1" runat="server" Text="Login" Icon="Accept">
                        <DirectEvents>
                            <Click OnEvent="Button1_Click" >
                                <EventMask ShowMask="true" Msg="Verifying..." MinDelay="1000" />
                            </Click>
                        </DirectEvents>
                    </ext:Button>
                </Buttons>
            </ext:Window>
        </form>
    </body>
    </html>
  9. #9
  10. #10
    Quote Originally Posted by Daniil View Post
    Hi Daniil,

    Thanks very much, I saw the forum and my problem was with the Kaspersky Internet Security. I changed the configuration not to use a protection in Keyboard and works fine.

    Thanks for Help.

    Oliver

Similar Threads

  1. [CLOSED] Problem to use property "Maximized" from "Window"
    By avante in forum 2.x Legacy Premium Help
    Replies: 3
    Last Post: Jan 22, 2013, 12:47 AM
  2. Replies: 5
    Last Post: May 02, 2012, 5:37 PM
  3. [CLOSED] SelectBox: Problem with characters "<" and ">"
    By nhg_itd in forum 1.x Legacy Premium Help
    Replies: 4
    Last Post: Nov 03, 2011, 6:43 AM
  4. Replies: 4
    Last Post: Oct 11, 2011, 2:42 AM
  5. Replies: 2
    Last Post: Jun 26, 2011, 1:59 AM

Tags for this Thread

Posting Permissions