Example #1
0
        private void button_Login_Click(object sender, EventArgs e)
        {
            // string sUserLoginPath = @".\App_Data\userLogin.dll";
            string PassWord = textBox_Password.Text.Trim();

            PassWord += "abc";
            string sPassWordmd5 = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(PassWord, "MD5");
            string sPassWordmd5Twice
                = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(sPassWordmd5, "MD5");
            //输入密码 两次MD5加密


            string sPassWordmd5Auth = "";

            //sPassWordmd5Auth = File.ReadAllText(sUserLoginPath);
            sPassWordmd5Auth = Properties.Settings.Default.PassWordMd5Twice.ToString();
            // int iPassWordMd5Lenth = Convert.ToInt16(fUserLogin.Length);

            if (sPassWordmd5Auth.Length != 32)
            {
                FormMessageAutoClose fPassWordNoSet = new FormMessageAutoClose();
                fPassWordNoSet.setLabel("密码未设置");
                fPassWordNoSet.ShowDialog();
                Form fReg = new FormRegister();
                fReg.ShowDialog();
            }

            else
            {
                if (sPassWordmd5Auth == sPassWordmd5Twice)
                {
                    FormMessageAutoClose fLoginSuccess = new FormMessageAutoClose();
                    fLoginSuccess.setLabel("登录成功,自动跳转中");
                    fLoginSuccess.ShowDialog();
                    this.DialogResult = DialogResult.OK;
                }
                else
                {
                    MessageBox.Show("密码错误");
                    // textBox_UserName.Text = "";
                    textBox_Password.Text = "";
                }
            }
        }
Example #2
0
        private void button_Login_Click(object sender, EventArgs e)
        {
            // string sUserLoginPath = @".\App_Data\userLogin.dll";
            string PassWord = textBox_Password.Text.Trim();
            PassWord += "abc";
            string sPassWordmd5 = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(PassWord, "MD5");
            string sPassWordmd5Twice
                = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(sPassWordmd5, "MD5");
            //输入密码 两次MD5加密

            string sPassWordmd5Auth = "";
            //sPassWordmd5Auth = File.ReadAllText(sUserLoginPath);
            sPassWordmd5Auth = Properties.Settings.Default.PassWordMd5Twice.ToString();
               // int iPassWordMd5Lenth = Convert.ToInt16(fUserLogin.Length);

            if (sPassWordmd5Auth.Length!=32)
            {
                FormMessageAutoClose fPassWordNoSet = new FormMessageAutoClose();
                fPassWordNoSet.setLabel("密码未设置");
                fPassWordNoSet.ShowDialog();
                Form fReg = new FormRegister();
                fReg.ShowDialog();
            }

            else
            {
                if (sPassWordmd5Auth == sPassWordmd5Twice)
                {
                    FormMessageAutoClose fLoginSuccess = new FormMessageAutoClose();
                    fLoginSuccess.setLabel("登录成功,自动跳转中");
                    fLoginSuccess.ShowDialog();
                    this.DialogResult = DialogResult.OK;
                }
                else
                {
                    MessageBox.Show("密码错误");
                    // textBox_UserName.Text = "";
                    textBox_Password.Text = "";
                }
            }
        }
Example #3
0
        private void button_Register_Click(object sender, EventArgs e)
        {
            Form fReg = new FormRegister();

            fReg.ShowDialog();
        }
Example #4
0
 private void button_Register_Click(object sender, EventArgs e)
 {
     Form fReg = new FormRegister();
     fReg.ShowDialog();
 }