-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main_Menu.aspx.cs
147 lines (118 loc) · 4.05 KB
/
Main_Menu.aspx.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace WEB_PROJE
{
public partial class Main_Menu : System.Web.UI.Page
{
public static int toplam;
protected void Page_Load(object sender, EventArgs e)
{
try
{
Label2.Text = Session["oturum"].ToString();
}
catch (Exception)
{
Label2.Text = "misafir";
}
}
protected void Button1_Click(object sender, EventArgs e)
{
}
protected void Hesapla_Click(object sender, EventArgs e)
{
string tatilseçimi=DropDownList1.SelectedItem.ToString();
string konaklamaseçim=DropDownList2.SelectedItem.ToString();
int yetiskin_Sayi =500*Convert.ToInt32(DropDownList3.Text);
int cocuk_Sayi = 200*Convert.ToInt32(DropDownList4.Text);
int bebek_sayi=100*Convert.ToInt32(DropDownList5.Text);
int güncel= yetiskin_Sayi+cocuk_Sayi+bebek_sayi;
if (tatilseçimi== "Ege Kültürel Turu")
{
toplam += 2500;
}
else if (tatilseçimi== "Akdeniz Turu")
{
toplam += 3000;
}
else if (tatilseçimi == "Marmara Kültürel Turu")
{
toplam += 2000;
}
else if (tatilseçimi == "İç Anadolu Kültürel Turu")
{
toplam += 2000;
}
else if (tatilseçimi == "Karadeniz Turu")
{
toplam += 2500;
}
else if (tatilseçimi == "Güneydoğu Turu")
{
toplam += 2000;
}
else if (tatilseçimi == "Doğu Anadolu Turu")
{
toplam += 2000;
}
if (konaklamaseçim== "VİP konaklama(En az 4 Yıldızlı otel)")
{
toplam += 3000;
}
else if (konaklamaseçim== "Lüks Konaklama (En az 3 yıldızlı otel)")
{
toplam += 2000;
}
else if (konaklamaseçim == "Standart Konaklama (En az 2 yıldızlı otel)")
{
toplam += 1000;
}
else if (konaklamaseçim == "Eco Konaklama(Pansiyon veya butik otel)")
{
toplam += 500;
}
toplam += güncel;
if (güncel == 0)
{
toplam = 0;
}
string güncel_Tut=toplam.ToString();
Tutar.Text = güncel_Tut+ "DEN BAŞLAYAN FİYATLARLA TEKLİF ALMAK İÇİN İLETİŞİME GEÇ";
Tutar.Visible = true;
Hesapla.Enabled = false;
}
protected void İndirim_Click(object sender, EventArgs e)
{
if (TextBox1.Text == "PAU YBS")
{
toplam -= 500;
Tutar.Text = toplam.ToString() + "\t"+ " DEN BAŞLAYAN FİYATLARLA TEKLİF ALMAK İÇİN İLETİŞİME GEÇ";
Label1.Text = "İndirim Uygulandı";
Label1.Visible = true;
İndirim.Enabled = false;
}
else
{
Label1.Visible = true;
Label1.Text = "Kod Hatalı";
}
}
protected void Button1_Click1(object sender, EventArgs e)
{
toplam = 0;
İndirim.Enabled = true;
Hesapla.Enabled=true;
DropDownList3.SelectedIndex = 0;
DropDownList4.SelectedIndex = 0;
DropDownList5.SelectedIndex = 0;
}
protected void Button2_Click(object sender, EventArgs e)
{
Response.Redirect("Login_page.aspx");
}
}
}