-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuserprofile.aspx.cs
222 lines (188 loc) · 7.63 KB
/
userprofile.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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Configuration;
using System.Data;
using System.Data.SqlClient;
namespace EducationalOnlineSolution
{
public partial class userprofile : System.Web.UI.Page
{
string strcon = ConfigurationManager.ConnectionStrings["con"].ConnectionString;
protected void Page_Load(object sender, EventArgs e)
{
try
{
if (Session["username"].ToString() == "" || Session["username"] == null)
{
Response.Write("<script>alert('Session Expired Login Again');</script>");
Response.Redirect("userlogin.aspx");
}
else
{
getUserBookData();
if (!Page.IsPostBack)
{
getUserPersonalDetails();
}
}
}
catch (Exception ex)
{
Response.Write("<script>alert('Session Expired Login Again');</script>");
Response.Redirect("userlogin.aspx");
}
}
// update button click
protected void Button1_Click(object sender, EventArgs e)
{
if (Session["username"].ToString() == "" || Session["username"] == null)
{
Response.Write("<script>alert('Session Expired Login Again');</script>");
Response.Redirect("userlogin.aspx");
}
else
{
updateUserPersonalDetails();
}
}
// user defined function
void updateUserPersonalDetails()
{
string password = "";
if (TextBox10.Text.Trim() == "")
{
password = TextBox9.Text.Trim();
}
else
{
password = TextBox10.Text.Trim();
}
try
{
SqlConnection con = new SqlConnection(strcon);
if (con.State == ConnectionState.Closed)
{
con.Open();
}
SqlCommand cmd = new SqlCommand("update member_master_tbl set full_name=@full_name, dob=@dob, contact_no=@contact_no, email=@email, state=@state, city=@city, pincode=@pincode, full_address=@full_address, password=@password, account_status=@account_status WHERE member_id='" + Session["username"].ToString().Trim() + "'", con);
cmd.Parameters.AddWithValue("@full_name", TextBox1.Text.Trim());
cmd.Parameters.AddWithValue("@dob", TextBox2.Text.Trim());
cmd.Parameters.AddWithValue("@contact_no", TextBox3.Text.Trim());
cmd.Parameters.AddWithValue("@email", TextBox4.Text.Trim());
cmd.Parameters.AddWithValue("@state", DropDownList1.SelectedItem.Value);
cmd.Parameters.AddWithValue("@city", TextBox6.Text.Trim());
cmd.Parameters.AddWithValue("@pincode", TextBox7.Text.Trim());
cmd.Parameters.AddWithValue("@full_address", TextBox5.Text.Trim());
cmd.Parameters.AddWithValue("@password", password);
cmd.Parameters.AddWithValue("@account_status", "pending");
int result = cmd.ExecuteNonQuery();
con.Close();
if (result > 0)
{
Response.Write("<script>alert('Your Details Updated Successfully');</script>");
getUserPersonalDetails();
getUserBookData();
}
else
{
Response.Write("<script>alert('Invaid entry');</script>");
}
}
catch (Exception ex)
{
Response.Write("<script>alert('" + ex.Message + "');</script>");
}
}
void getUserPersonalDetails()
{
try
{
SqlConnection con = new SqlConnection(strcon);
if (con.State == ConnectionState.Closed)
{
con.Open();
}
SqlCommand cmd = new SqlCommand("SELECT * from member_master_tbl where member_id='" + Session["username"].ToString() + "';", con);
SqlDataAdapter da = new SqlDataAdapter(cmd);
DataTable dt = new DataTable();
da.Fill(dt);
TextBox1.Text = dt.Rows[0]["full_name"].ToString();
TextBox2.Text = dt.Rows[0]["dob"].ToString();
TextBox3.Text = dt.Rows[0]["contact_no"].ToString();
TextBox4.Text = dt.Rows[0]["email"].ToString();
DropDownList1.SelectedValue = dt.Rows[0]["state"].ToString().Trim();
TextBox6.Text = dt.Rows[0]["city"].ToString();
TextBox7.Text = dt.Rows[0]["pincode"].ToString();
TextBox5.Text = dt.Rows[0]["full_address"].ToString();
TextBox8.Text = dt.Rows[0]["member_id"].ToString();
TextBox9.Text = dt.Rows[0]["password"].ToString();
Label1.Text = dt.Rows[0]["account_status"].ToString().Trim();
if (dt.Rows[0]["account_status"].ToString().Trim() == "active")
{
Label1.Attributes.Add("class", "badge badge-pill badge-success");
}
else if (dt.Rows[0]["account_status"].ToString().Trim() == "pending")
{
Label1.Attributes.Add("class", "badge badge-pill badge-warning");
}
else if (dt.Rows[0]["account_status"].ToString().Trim() == "deactive")
{
Label1.Attributes.Add("class", "badge badge-pill badge-danger");
}
else
{
Label1.Attributes.Add("class", "badge badge-pill badge-info");
}
}
catch (Exception ex)
{
Response.Write("<script>alert('" + ex.Message + "');</script>");
}
}
void getUserBookData()
{
try
{
SqlConnection con = new SqlConnection(strcon);
if (con.State == ConnectionState.Closed)
{
con.Open();
}
SqlCommand cmd = new SqlCommand("SELECT * from book_issue_tbl where member_id='" + Session["username"].ToString() + "';", con);
SqlDataAdapter da = new SqlDataAdapter(cmd);
DataTable dt = new DataTable();
da.Fill(dt);
GridView1.DataSource = dt;
GridView1.DataBind();
}
catch (Exception ex)
{
Response.Write("<script>alert('" + ex.Message + "');</script>");
}
}
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
try
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
//Check your condition here
DateTime dt = Convert.ToDateTime(e.Row.Cells[5].Text);
DateTime today = DateTime.Today;
if (today > dt)
{
e.Row.BackColor = System.Drawing.Color.PaleVioletRed;
}
}
}
catch (Exception ex)
{
Response.Write("<script>alert('" + ex.Message + "');</script>");
}
}
}
}