Beispiel #1
0
 public bool AddClient(Client client)//新用户注册
 {
     return(dal.AddClient(client) > 0);
 }
    protected void Submit_Click(object sender, EventArgs e)
    {
        ClientDal dal       = new ClientDal();
        string    classname = "";
        string    serial    = "";
        string    client    = "";
        string    tel       = "";
        string    tel2      = "";
        string    country   = "";
        string    province  = "";
        string    city      = "";
        string    addr      = "";
        string    email     = "";
        string    userName  = "";
        string    passwd    = "";

        if (string.IsNullOrEmpty(this.Class.Text))
        {
            classname = "";
        }
        else
        {
            classname = this.Class.Text;
        }

        if (string.IsNullOrEmpty(this.Serial.Text))
        {
            serial = "";
        }
        else
        {
            serial = this.Serial.Text;
        }

        if (string.IsNullOrEmpty(this.Client.Text))
        {
            client = "";
        }
        else
        {
            client = this.Client.Text;
        }

        if (string.IsNullOrEmpty(this.Tel.Text))
        {
            tel = "";
        }
        else
        {
            tel = this.Tel.Text;
        }

        if (string.IsNullOrEmpty(this.Tel2.Text))
        {
            tel2 = "";
        }
        else
        {
            tel2 = this.Tel2.Text;
        }

        if (string.IsNullOrEmpty(this.Country.Text))
        {
            country = "";
        }
        else
        {
            country = this.Country.Text;
        }

        if (string.IsNullOrEmpty(this.Province.Text))
        {
            province = "";
        }
        else
        {
            province = this.Province.Text;
        }

        if (string.IsNullOrEmpty(this.City.Text))
        {
            city = "";
        }
        else
        {
            city = this.City.Text;
        }

        if (string.IsNullOrEmpty(this.Addr.Text))
        {
            addr = "";
        }
        else
        {
            addr = this.Addr.Text;
        }

        if (string.IsNullOrEmpty(this.Email.Text))
        {
            email = "";
        }
        else
        {
            email = this.Email.Text;
        }

        if (string.IsNullOrEmpty(this.UserName.Text))
        {
            userName = "";
        }
        else
        {
            userName = this.UserName.Text;
        }

        if (string.IsNullOrEmpty(this.Passwd.Text))
        {
            passwd = "";
        }
        else
        {
            passwd = this.Passwd.Text;
        }

        dal.AddClient(classname, serial, client, tel, tel2, country, province, city, addr, email, userName, passwd);
        //if (a > 0)
        //{
        System.Threading.Thread.Sleep(1000);
        Response.Redirect("../DBTableManagement.aspx");
        Response.End();
        // }
        // else
        //{
        //
        //        Response.Redirect("AddClient.aspx");
        //        Response.End();
        // }
        //}
    }