Form1.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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 konkursTest14
  12. {
  13. public partial class Form1 : Form
  14. {
  15. public Form1()
  16. {
  17. InitializeComponent();
  18. }
  19. private void login_Click(object sender, EventArgs e)
  20. {
  21. // подключение к бд
  22. String connString = "Data Source=CLASS3108;Initial Catalog=konkurstest;Integrated Security=True";
  23. SqlConnection conn = new SqlConnection(connString);
  24. SqlCommand command = new SqlCommand("SELECT * FROM users WHERE login = @login AND password = @password",conn);
  25. command.Parameters.Add("@login",LoginT.Text);
  26. command.Parameters.Add("@password", Password.Text);
  27. conn.Open();
  28. SqlDataReader Reader = null;
  29. // чтение с обработкой исключене данных с бд и открывание новой формы
  30. try {
  31. Reader = command.ExecuteReader();
  32. if (Reader.HasRows)
  33. {
  34. int a = 0;
  35. Reader.Read();
  36. if ((Reader["admin"].ToString() == "1") && (radioButton1.Checked))
  37. {
  38. Form2 fr2 = new Form2();
  39. fr2.Show();
  40. this.Hide();
  41. a = 1;
  42. }
  43. else
  44. {
  45. if(a == 1)
  46. {
  47. MessageBox.Show("Выбрана неверная роль", "Ошибка авторизации", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  48. }
  49. }
  50. if ((Reader["manager"].ToString() == "1") && (radioButton2.Checked))
  51. {
  52. form3 fr3 = new form3();
  53. fr3.Show();
  54. this.Hide();
  55. }
  56. else
  57. {
  58. if(a == 0)
  59. {
  60. MessageBox.Show("Выбрана неверная роль", "Ошибка авторизации", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  61. }
  62. }
  63. }
  64. else
  65. {
  66. MessageBox.Show("Введеный пароль неверный", "Ошибка авторизации", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  67. }
  68. }
  69. catch(Exception ex)
  70. {
  71. MessageBox.Show(ex.Message.ToString(), "", MessageBoxButtons.OK, MessageBoxIcon.Error);
  72. }
  73. finally
  74. {
  75. }
  76. }
  77. // PlaceHoler для textbox
  78. private void LoginT_Enter(object sender, EventArgs e)
  79. {
  80. if(LoginT.Text == "Введите логин")
  81. {
  82. LoginT.Text = "";
  83. }
  84. }
  85. private void LoginT_Leave(object sender, EventArgs e)
  86. {
  87. if (LoginT.Text == "")
  88. {
  89. LoginT.Text = "Введите логин";
  90. }
  91. }
  92. private void Password_Enter(object sender, EventArgs e)
  93. {
  94. if (Password.Text == "Введите пароль")
  95. {
  96. Password.Text = "";
  97. }
  98. }
  99. private void Password_Leave(object sender, EventArgs e)
  100. {
  101. if (Password.Text == "")
  102. {
  103. Password.Text = "Введите пароль";
  104. }
  105. }
  106. }
  107. }