-
Notifications
You must be signed in to change notification settings - Fork 0
/
sifreDegistir.cs
102 lines (81 loc) · 3.08 KB
/
sifreDegistir.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.SqlClient;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Banka
{
public partial class sifreDegistir : Form
{
public sifreDegistir()
{
InitializeComponent();
}
SqlConnection connection = new SqlConnection(" server= . ; initial catalog = Banka; integrated security = sspi ");
static string eskiSifre = "";
private void sifreDegistir_Load(object sender, EventArgs e)
{
load();
}
private void button1_Click(object sender, EventArgs e)
{
if (txtEski.Text == "" || txtYeni.Text == "")
{
MessageBox.Show("lütfen gerekli alanları boş bırakmayınız", "Şifre değiştirme işlemi");
}
else if (txtYeni.Text.Length < 4)
{
MessageBox.Show("En az 4 karakter uzunluğunda şifre belirleyiniz", "şifre değiştirme işlemi");
}
else
{
if (txtEski.Text == eskiSifre)
{
SqlCommand komut = new SqlCommand("update musteriler set parola = @p1 where ID = @p2", connection);
komut.Parameters.AddWithValue("@p1", txtYeni.Text);
komut.Parameters.AddWithValue("@p2", Form1.musteriID);
connection.Open();
int sonuc = komut.ExecuteNonQuery();
if (sonuc == 1)
{
MessageBox.Show("Şifre değiştirme işlemi başarlı", "şifre değiştirme işlemi", MessageBoxButtons.OK, MessageBoxIcon.Information);
islemKaydet.kaydet(Form1.musteriID, "Şifre Değiştirildi");
}
else
{
MessageBox.Show("Şifre değiştirme işlemi başarısız", "Para çekme işlemi", MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
connection.Close();
txtEski.Text = "";
txtYeni.Text = "";
load();
}
else
{
MessageBox.Show("Giridğin eski şifre mevcut şifre ile uyumsuz", "şifre değiştirme işlemi", MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
}
}
private void load()
{
SqlCommand komut = new SqlCommand("select * from musteriler where ID=@p1", connection);
komut.Parameters.AddWithValue("@p1", Form1.musteriID);
connection.Open();
SqlDataReader dr = komut.ExecuteReader();
if (dr.Read())
{
eskiSifre = dr["parola"].ToString();
}
else
{
MessageBox.Show("şifre alma başarısız");
}
connection.Close();
}
}
}