可能重复:
当我按 Enter 时提交登录控制按钮
我有一个 Login.aspx 页面,其中包含:
<asp:Login ID="MainLogin" runat="server" onloggingin="MainLogin_LoggingIn"></asp:Login>
代码隐藏:
protected void MainLogin_LoggingIn(object sender, LoginCancelEventArgs e)
{
SqlConnection myConnection = new SqlConnection(DBConnection.GetConnectionString());
SqlCommand myCommand = new SqlCommand("SELECT * FROM Users WHERE login=@login and pass=@pass", myConnection);
myCommand.Parameters.AddWithValue("login", MainLogin.UserName);
myCommand.Parameters.AddWithValue("pass", MainLogin.Password);
myCommand.Connection.Open();
SqlDataReader Reader = myCommand.ExecuteReader();
while (Reader.Read())
{
Session["curUserRole"] = Reader["role"].ToString();
Session["curUserLogin"] = MainLogin.UserName;
FormsAuthentication.RedirectFromLoginPage(MainLogin.UserName, MainLogin.RememberMeSet);
return;
}
//Reader.Close();
//myCommand.Connection.Close();
//myConnection.Close();
}
用户输入他的登录名和密码,然后按下组件的“登录”按钮进行登录。当用户输入他的登录名和密码,然后按键盘上的 ENTER 键时,页面 login.aspx 会重新加载。如何解决?我需要在键盘上按 ENTER 与按组件上的登录按钮具有相同的行为。