Registr.cs 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. // Проверка вводимых данных
  28. if (polelogin.TextLength > 15) MessageBox.Show("Максимальная длина логина – 15 символов");
  29. else if (polepassword.TextLength > 25) MessageBox.Show("Максимальная длина пароля – 25 символов");
  30. else if (polelogin.TextLength == 0) MessageBox.Show("Поле логина не может быть пусто");
  31. else if (polepassword.TextLength == 0) MessageBox.Show("Поле пароля не может быть пусто");
  32. string query = "Select * from Employee where login = '" + polelogin.Text.Trim() + "'";
  33. SqlDataAdapter sda = new SqlDataAdapter(query, sqlconn);
  34. DataTable dtbl = new DataTable();
  35. sda.Fill(dtbl);
  36. if (dtbl.Rows.Count == 0)
  37. {
  38. dataBase.openConnection();
  39. String Proverka = "INSERT INTO Employee(login, password) values('" + polelogin.Text.Trim() + "', '" + polepassword.Text.Trim() + "')";
  40. SqlDataAdapter sda1 = new SqlDataAdapter(Proverka, sqlconn);
  41. DataTable dtbl1 = new DataTable();
  42. sda1.Fill(dtbl1);
  43. MessageBox.Show("Вы успешно зарегистрировались");
  44. this.Hide();
  45. Vhod Vhod = new Vhod();
  46. Vhod.Show();
  47. }
  48. else
  49. {
  50. MessageBox.Show("Логин уже занят!!!");
  51. }
  52. }
  53. }
  54. }