Hệ thống quản lý phòng tập trong C#

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.Windows.Forms;
9 using
System.Data.SqlClient;
10
11 namespace
GymManagementSystem
12 {
13     
public partial class NewStaff : Form
14     {
15         
public NewStaff()
16         {
17             InitializeComponent();
18         }
19
20         
private void button1_Click(object sender, EventArgs e)
21         {
22             SqlConnection con =
new SqlConnection(@"Data Source=.\SQLEXPRESS;AttachDbFilename=F:\Sem.4\C# Projects\GymManagementSystem in C#\GymManagementSystem\Gym.mdf;Integrated Security=True;User Instance=True");
23             con.Open();
24             
string gender = string.Empty;
25             
if (radioButton1.Checked)
26             {
27                 gender =
"Male";
28             }
29             
else if (radioButton2.Checked)
30             {
31                 gender =
"Female";
32             }
33             
try
34             {
35                 
string str = " INSERT INTO staff(f_name,l_name,gender,dob,mobile,email,jod,street,city) VALUES('" + textBox1.Text + "','" + textBox2.Text + "','" + gender + "','" + textBox3.Text + "','" + textBox4.Text + "','" + textBox5.Text + "','" + textBox6.Text + "','" + textBox7.Text + "','" +textBox8.Text + "'); ";
36
37                 SqlCommand cmd =
new SqlCommand(str, con);
38                 cmd.ExecuteNonQuery();
39
40                 
string str1 = "select max(stf_id) from staff;";
41
42                 SqlCommand cmd1 =
new SqlCommand(str1, con);
43                 SqlDataReader dr = cmd1.ExecuteReader();
44                 
if (dr.Read())
45                 {
46                     MessageBox.Show(
"" + textBox1.Text + "'s Details is Inserted Successfully.. " + textBox1.Text + "'s Id is " + dr.GetInt32(0) + ".", "Important Message");
47                     
this.Hide();
48                     
49                 }
50                 
this.Close();
51             }
52             
catch (SqlException excep)
53             {
54                 MessageBox.Show(excep.Message);
55             }
56             con.Close();
57         }
58     }
59 }


Gõ tìm kiếm nhanh...