示例#1
0
  protected void Button1_Click(object sender, EventArgs e)
  {
      info.UserId   = TextBox1.Text;
      info.NickName = TextBox4.Text;
      info.Pwd      = TextBox3.Text;

      info.Email = TextBox5.Text;
      info.QQ    = TextBox6.Text;

      if (!um.Register(info))
      {
          this.Label1.Text = "<script>alert('用户名已使用!请重新选择!')</script>";
      }
      else
      {
          this.Label1.Text = "<script>alert('注册成功!小凡博客欢迎您!');window.location='Default.aspx'</script>";
      }
  }