在ASP登录时输入密钥

时间:2014-03-25 16:08:09

标签: c# asp.net .net

在aspx页面上,我在表单中有一个asp:login控件。当我按下登录按钮时一切正常,但是当我按下回车键时,页面会重新加载,但没有其他任何事情发生。不访问loginbutton处理函数。

关于aspx:

<form id="form1" class="login-form" runat="server" DefaultButton="lgLogin$LoginButton">    
    <asp:Login ID="lgLogin" runat="server" Width="100%"
        FailureText="Some text here"
        PasswordRequiredErrorMessage="Some text here"          
        UserNameRequiredErrorMessage="Some text here"
        TextLayout="TextOnLeft" 
        OnAuthenticate="lgLogin_Authenticate" 
        DestinationPageUrl="~/Welcome.aspx"
        OnLoginError="lgLogin_Error"
        DisplayRememberMe="False" >
        <LayoutTemplate>
            <div class="form-group">
                <label class="control-label visible-ie8 visible-ie9">Login</label>
                <div class="input-icon">
                    <i class="fa fa-user"></i>                
                    <asp:TextBox runat="server" type="text" ID="UserName" CssClass="form-control placeholder-no-fix" placeholder="Login" />
                </div>
            </div>
            <div class="form-group">
                <label class="control-label visible-ie8 visible-ie9">Password</label>
                <div class="input-icon">
                    <i class="fa fa-lock"></i>
                    <asp:TextBox runat="server" type="password" ID="Password" CssClass="form-control placeholder-no-fix" placeholder="Password" />
                </div>
            </div>

            <div id="AlertError" runat="server" class="alert alert-danger" visible="false">
                <button class="close" data-close="alert"></button>
                <span>
                    <asp:Label ID="FailureText" runat="server" ></asp:Label>
                </span>
            </div>

            <div class="form-actions">
                <asp:Button type="submit" class="btn blue pull-right" ID="LoginButton" runat="server" CommandName="Login" Text='Login now' />
            </div>
        </LayoutTemplate>           
        <TextBoxStyle CssClass="form-control placeholder-no-fix"/>
        <LoginButtonStyle CssClass="btn blue pull-right" />
    </asp:Login>
</form>

只有在按下LoginButton时才会访问lgLogin_authenticate void。

修改

它已经解决了。实际上,它运作良好。问题出在一个.js文件中,它已在此页面中加载。它正在捕获Enter键进行一些检查,但最后它没有调用提交按钮。

2 个答案:

答案 0 :(得分:0)

 protected void Page_Load(object sender, EventArgs e)
 {
       button1.Focus();
}

答案 1 :(得分:0)