protected void butSubmit_Click(object sender, EventArgs e) { if (MemberDB.CheckAccount(txtEmail.Text, txtPassword.Text)) { AuthenticateUtility.LoginMember(txtEmail.Text, chkRemember.Checked); var tab = Request.QueryString["tab"]; if (tab == "cart") { Response.Redirect(Request.RawUrl + "&jl=1"); } else { Response.Redirect(Request.RawUrl); } } else { MessageBox.Show("Thông tin đăng nhập không chính xác"); } }