Registr.cs 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. using System.Data.SqlClient;
  11. namespace project
  12. {
  13. public partial class Registr : Form
  14. {
  15. DataBase dataBase = new DataBase();
  16. public Registr()
  17. {
  18. InitializeComponent();
  19. }
  20. private void Registr_FormClosed(object sender, FormClosedEventArgs e)
  21. {
  22. Application.Exit();
  23. }
  24. private void button1_Click(object sender, EventArgs e)
  25. {
  26. SqlConnection sqlconn = new SqlConnection(@"Data Source=ngknn.ru;Initial Catalog=Project_GorodskoiSpravochnik;Persist Security Info=True;User ID=31П;Password=12357");
  27. if (polelogin.TextLength > 15) MessageBox.Show("Максимальная длина логина – 15 символов");
  28. else if (polepassword.TextLength > 25) MessageBox.Show("Максимальная длина пароля – 25 символов");
  29. else if (polelogin.TextLength == 0) MessageBox.Show("Поле логина не может быть пусто");
  30. else if (polepassword.TextLength == 0) MessageBox.Show("Поле пароля не может быть пусто");
  31. string query = "Select * from Employee where login = '" + polelogin.Text.Trim() + "'";
  32. SqlDataAdapter sda = new SqlDataAdapter(query, sqlconn);
  33. DataTable dtbl = new DataTable();
  34. sda.Fill(dtbl);
  35. if (dtbl.Rows.Count == 0)
  36. {
  37. dataBase.openConnection();
  38. String Proverka = "INSERT INTO Employee(login, password) values('" + polelogin.Text.Trim() + "', '" + polepassword.Text.Trim() + "')";
  39. SqlDataAdapter sda1 = new SqlDataAdapter(Proverka, sqlconn);
  40. DataTable dtbl1 = new DataTable();
  41. sda1.Fill(dtbl1);
  42. MessageBox.Show("Вы успешно зарегистрировались");
  43. this.Hide();
  44. Vhod Vhod = new Vhod();
  45. Vhod.Show();
  46. }
  47. else
  48. {
  49. MessageBox.Show("Логин уже занят!!!");
  50. }
  51. }
  52. }
  53. }