protected void btn_Join_Click(object sender, EventArgs e)
        {
            DB.Cloud  cloud   = new DB.Cloud();
            DataTable dt      = new DataTable();
            int       nReturn = cloud.m_tbMember_Add(txt_Email.Text, Util.EncryptText(txt_Pass.Text), txt_Name.Text, txt_Company.Text, 9);

            Response.Redirect("/Login/login.aspx");
        }