protected void btnRegister(object sender, EventArgs e) { if (txtUserName.Text == "" || txtPassWord.Text == "") { lblthongbao.Text = "Đăng ký không thành công. Đề nghị nhập lại tài khoản/mật khẩu !"; txtUserName.Text = ""; /* xóa tất cả dl trên tên tk thanhf rỗng*/ txtPassWord.Text = ""; /* cho password thành rỗng */ txtUserName.Focus(); /*đưa chuột về ô username */ } else { dt.dangnhap_insert(txtUserName.Text, txtPassWord.Text); Response.Redirect("index.aspx"); } }