if (Page.IsValid)
       
{
            
if(Users.Authenticate(txtUsername.Text, txtPassword.Text))//数据库验证方法,代码略
              {
                 
//验证后导向初始页
                     FormsAuthentication.RedirectFromLoginPage( txtUsername.Text, chkRemember.Checked ;
                 }

          }

      在此也可以用FormsAuthentication.SetAuthCookie(email.Text, RememberCheckbox.Checked);该方法不进行页面导向,而是停留在本页,然后由自己选择导向的页面。