private void button1_Click(object sender, EventArgs e) { //User mit eine E-Mail Informiren string testinhalt = "Hallo \n Ich möchte gere Das Medium " + label8.Text + " Band " + label10.Text + " (DBID: " + label2.Text + " Ausleihen bitte um kontaktaufnahme"; mail_to_webseit mail = new mail_to_webseit("ausl", testinhalt, label26.Text, textBox1.Text); mail.Show(); }
private void button1_Click(object sender, EventArgs e) { try { using (MD5 md5hach = MD5.Create()) { string pHachMD5 = GetMD5Hash(md5hach, textBox3.Text); //secorety string KaySysMD5 = GetMD5Hash(md5hach, textBox4.Text); string KeySecy = xC(20) + "-Y-" + KaySysMD5 + "|" + xC(30) + "_" + label7.Text + "-BO-DE"; string connStrSV = @"SERVER=" + label7.Text + ";" + "DATABASE=" + label9.Text + ";" + "UID=" + label8.Text + ";" + "PWD=" + label10.Text + ";"; MySqlConnection myConnection = new MySqlConnection(connStrSV); string gomedia = "INSERT INTO user (UserID, inhaberID, username, Name, password, email, securityKEY) VALUES ('', '" + textBox4.Text + "', '" + textBox2.Text + "', '" + textBox1.Text + "', '" + pHachMD5 + "', '" + textBox5.Text + "', '" + KeySecy + "');"; MySqlCommand myCommand = new MySqlCommand(gomedia); myCommand.Connection = myConnection; myConnection.Open(); myCommand.ExecuteNonQuery(); myCommand.Connection.Close(); //Sicherhets Datei anlegen string keyData = @"keypool/usere_server_" + label7.Text + ".keyBO2"; File.WriteAllText(keyData, KeySecy); } } catch (Exception ex) { MessageBox.Show(string.Format("Ein Feheler ist Aufgetreten:\n {0}", ex.Message), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } finally { //if (myCommand != null) myCommand.Clone(); MessageBox.Show("Iher Daten sine nun gespeicher!!!", "Info", MessageBoxButtons.OK, MessageBoxIcon.Information); //User mit eine E-Mail Informiren string textinhalt = "Hallo " + textBox1.Text + "\nSie haben sich beim Server: " + label11.Text + " Angemedet. Hier Naochmal Ihre Daten.\nInhaberID: " + textBox4.Text + "\nUsername: "******"\nName: " + textBox1.Text + "\npassword: "******"\n\nMfG Der ServerAdmin\n\n--\nDiese E-Mal ist Automatich erstelt, bitte nicht Darauf Antworten Danke!"; mail_to_webseit mail = new mail_to_webseit("reg", textinhalt, "", textBox5.Text); mail.Show(); } }