首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

登陆页面跳转有关问题

2012-09-23 
登陆页面跳转问题protected void Button1_Click(object sender, EventArgs e){SqlConnection con DB.cre

登陆页面跳转问题
protected void Button1_Click(object sender, EventArgs e)
  {
  SqlConnection con = DB.createDB();
  SqlCommand cmd = new SqlCommand();
  cmd.Connection = con;
  con.Open();//打开数据库连接
  cmd.CommandText = "select count(*) from tb_Users where UserName='"+this.txtUsers.Text+ "'and UserPwd='"+this.txtPassword.Text+"'";
  int a = Convert.ToInt32(cmd.ExecuteScalar());
  if (a > 0)
  {
   
   
  Response.Redirect("~Default.aspx");//为什么跳转不到我想要的页面啊???ie直接卡住

///////

///////
Response.Write("<script>alert('恭喜您登录成功!');location='javascript:history.go(-1)'</script>");
  Session["UserName"] = txtUsers.Text;
  Session["UserPwd"] = txtPassword.Text;
  txtUsers.Text="";
  txtPassword.Text = "";/////////而这个可也但是不是我想要的结果。我想的是跳转到我想要的页面,请大侠指点一下。。






  }
  else
  {
  Response.Write("<script>alert('很遗憾,登陆失败!');location='javascript:history.go(-1)'</script>");

  }
  con.Close();

  }
}

[解决办法]
Response.Redirect("~/Default.aspx");
[解决办法]
Response.Write("<script>alert('恭喜您登录成功!');location.href='/你要的页面.aspx'</script>");

热点排行