-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathEditParent.aspx.cs
200 lines (192 loc) · 7.97 KB
/
EditParent.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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using DAL.EOperations;
using DAL.Entities;
using BLL.BOperations;
using MySql.Data.MySqlClient;
using System.Data;
public partial class EditParent : System.Web.UI.Page
{
Guardian grd = new Guardian();
GOperation grdHandler = new GOperation();
protected void Page_Load(object sender, EventArgs e)
{
EditPar.Style.Add("display", "none");
#region EnableFalse
//Loop through all the control present on the web page/form
foreach (Control ctrl in form2.Controls)
{
//check for all the TextBox controls on the page and clear them
if (ctrl.GetType() == typeof(TextBox))
{
((TextBox)(ctrl)).Enabled = false;
if (((TextBox)ctrl).ID == "PID")
((TextBox)ctrl).Enabled = true;
}
//check for all the Label controls on the page and clear them
else if (ctrl.GetType() == typeof(Label))
{
((Label)(ctrl)).Enabled = false;
}
//check for all the DropDownList controls on the page and reset it to the very first item e.g. "-- Select One --"
else if (ctrl.GetType() == typeof(DropDownList))
{
((DropDownList)(ctrl)).Enabled = false;
}
//check for all the CheckBox controls on the page and unchecked the selection
else if (ctrl.GetType() == typeof(CheckBox))
{
((CheckBox)(ctrl)).Checked = false;
}
//check for all the CheckBoxList controls on the page and unchecked all the selections
else if (ctrl.GetType() == typeof(CheckBoxList))
{
((CheckBoxList)(ctrl)).ClearSelection();
}
//check for all the RadioButton controls on the page and unchecked the selection
else if (ctrl.GetType() == typeof(RadioButton))
{
((RadioButton)(ctrl)).Checked = false;
}
//check for all the RadioButtonList controls on the page and unchecked the selection
else if (ctrl.GetType() == typeof(RadioButtonList))
{
((RadioButtonList)(ctrl)).ClearSelection();
}
}
#endregion
}
protected void EditPar_Click(object sender, EventArgs e)
{
try
{
grd.ID = Convert.ToInt32(PID.Text);
grd.FNAME = PFname.Text;
grd.LNAME = PLname.Text;
grd.EMAIL = PEmail.Text;
grd.PASSWORD = PPass.Text;
grd.CNIC = PCNIC.Text;
grd.TELEPHONE = PTel.Text;
grd.MOBILENO = PMoblie.Text;
grd.ADDRESS = PADD.Text;
grd.RELATIONSHIP = PREL.Text;
if (grdHandler.UpdateGuardian(grd, Convert.ToInt32(PID.Text)) > 0)
{
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alertMessage", "alert('Record Updated Successfully')", true);
}
}
catch (Exception ex)
{
Response.Write("<script>alert('" + ex.Message + "')</script>");
}
gETdata.Style.Add("display", "block");
#region ClearInputs
//Loop through all the control present on the web page/form
foreach (Control ctrl in form2.Controls)
{
//check for all the TextBox controls on the page and clear them
if (ctrl.GetType() == typeof(TextBox))
{
((TextBox)(ctrl)).Text = string.Empty;
}
//check for all the Label controls on the page and clear them
else if (ctrl.GetType() == typeof(Label))
{
((Label)(ctrl)).Text = string.Empty;
}
//check for all the DropDownList controls on the page and reset it to the very first item e.g. "-- Select One --"
else if (ctrl.GetType() == typeof(DropDownList))
{
((DropDownList)(ctrl)).SelectedIndex = 0;
}
//check for all the CheckBox controls on the page and unchecked the selection
else if (ctrl.GetType() == typeof(CheckBox))
{
((CheckBox)(ctrl)).Checked = false;
}
//check for all the CheckBoxList controls on the page and unchecked all the selections
else if (ctrl.GetType() == typeof(CheckBoxList))
{
((CheckBoxList)(ctrl)).ClearSelection();
}
//check for all the RadioButton controls on the page and unchecked the selection
else if (ctrl.GetType() == typeof(RadioButton))
{
((RadioButton)(ctrl)).Checked = false;
}
//check for all the RadioButtonList controls on the page and unchecked the selection
else if (ctrl.GetType() == typeof(RadioButtonList))
{
((RadioButtonList)(ctrl)).ClearSelection();
}
}
#endregion
}
protected void gETdata_Click(object sender, EventArgs e)
{
PID.ReadOnly = true;
DataSet ds = grdHandler.GetGuardianByID(int.Parse(PID.Text));
if (ds.Tables[0].Rows.Count > 0)
{
PID.Text = ds.Tables[0].Rows[0]["Gr_Id"].ToString();
PFname.Text = ds.Tables[0].Rows[0]["Gr_Fname"].ToString();
PLname.Text = ds.Tables[0].Rows[0]["Gr_Lname"].ToString();
PEmail.Text = ds.Tables[0].Rows[0]["Gr_Email"].ToString();
PPass.Text = ds.Tables[0].Rows[0]["Gr_Pass"].ToString();
PTel.Text = ds.Tables[0].Rows[0]["Gr_TelNo"].ToString();
PMoblie.Text = ds.Tables[0].Rows[0]["Gr_MobileNo"].ToString();
PCNIC.Text = ds.Tables[0].Rows[0]["Gr_CNIC"].ToString();
PADD.Text = ds.Tables[0].Rows[0]["Gr_Address"].ToString();
PREL.Text = ds.Tables[0].Rows[0]["Gr_Relationship"].ToString();
}
gETdata.Style.Add("display", "none");
EditPar.Style.Add("display", "block");
#region EnableTrue
//Loop through all the control present on the web page/form
foreach (Control ctrl in form2.Controls)
{
//check for all the TextBox controls on the page and clear them
if (ctrl.GetType() == typeof(TextBox))
{
((TextBox)(ctrl)).Enabled = true;
if (((TextBox)ctrl).ID == "PID")
((TextBox)ctrl).Enabled = true;
}
//check for all the Label controls on the page and clear them
else if (ctrl.GetType() == typeof(Label))
{
((Label)(ctrl)).Enabled = true;
}
//check for all the DropDownList controls on the page and reset it to the very first item e.g. "-- Select One --"
else if (ctrl.GetType() == typeof(DropDownList))
{
((DropDownList)(ctrl)).Enabled = true;
}
//check for all the CheckBox controls on the page and unchecked the selection
else if (ctrl.GetType() == typeof(CheckBox))
{
((CheckBox)(ctrl)).Checked = true;
}
//check for all the CheckBoxList controls on the page and unchecked all the selections
else if (ctrl.GetType() == typeof(CheckBoxList))
{
((CheckBoxList)(ctrl)).ClearSelection();
}
//check for all the RadioButton controls on the page and unchecked the selection
else if (ctrl.GetType() == typeof(RadioButton))
{
((RadioButton)(ctrl)).Checked = true;
}
//check for all the RadioButtonList controls on the page and unchecked the selection
else if (ctrl.GetType() == typeof(RadioButtonList))
{
((RadioButtonList)(ctrl)).ClearSelection();
}
}
#endregion
}
}