-
Notifications
You must be signed in to change notification settings - Fork 0
/
Complain.aspx.cs
151 lines (144 loc) · 4.85 KB
/
Complain.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
using System.Collections;
public partial class Complain : System.Web.UI.Page
{
Databind_repeater dr;
DataTable complain, solution;
static string x = "-9999";
string cons;
SqlDataAdapter adp;
DataSet ds;
ArrayList arr = new ArrayList();
protected void Page_Load(object sender, EventArgs e)
{
signup.Visible = false;
dropdown.Visible = false;
query.Visible = false;
news.Visible = false;
if (Session["user_name"] != null)
{
label1.Text = "Welcome , " + (string)Session["user_name"];
Boolean admin = (Boolean)Session["admin"];
login.Visible = false;
dropdown.Visible = true;
if (admin == true)
{
query.Visible = true;
signup.Visible = true;
news.Visible = true;
}
cons = ConfigurationManager.ConnectionStrings["constr"].ConnectionString;
adp = new SqlDataAdapter("Get_All_Complain", cons);
adp.SelectCommand.CommandType = CommandType.StoredProcedure;
ds = new DataSet();
adp.Fill(ds);
if (ds.Tables[0].Rows.Count > 0)
{
complain = ds.Tables[0];
}
else
{
complain = new DataTable();
}
adp = new SqlDataAdapter("Get_All_Solution", cons);
adp.SelectCommand.CommandType = CommandType.StoredProcedure;
ds = new DataSet();
adp.Fill(ds);
if (ds.Tables[0].Rows.Count > 0)
{
solution = ds.Tables[0];
}
else
{
solution = new DataTable();
}
dr = new Databind_repeater();
arr = dr.Getdata(complain, solution);
itemsRepeater.DataSource = arr;
itemsRepeater.DataBind();
}
else
{
Response.Redirect("unauthorized.aspx");
}
}
protected void Repeater1_ItemCommand(object source, RepeaterCommandEventArgs e)
{
if (e.CommandName == "solution")
{
x = e.CommandArgument.ToString();
lbl_popup_message.Text = "Solution Messge";
popup.Show();
}
}
protected void Add(object sender, EventArgs e)
{
popup_flat_no.Text = string.Empty;
popup_message.Text = string.Empty;
lbl_popup_message.Text = "Complain Message";
popup.Show();
}
protected void cancel(object sender, EventArgs e)
{
x = "-9999";
popup.Hide();
}
protected void Save(object sender, EventArgs e)
{
if (x != "-9999")
{
SqlConnection con = new SqlConnection(cons);
SqlCommand cmd = new SqlCommand("Insert_Solution");
cmd.CommandType = CommandType.StoredProcedure;
cmd.Connection = con;
cmd.Parameters.AddWithValue("Sol_Flat_No", popup_flat_no.Text);
cmd.Parameters.AddWithValue("Solution_Message", popup_message.Text);
cmd.Parameters.AddWithValue("Sol_Complain_Id", x);
cmd.Parameters.AddWithValue("Date_Solution", "");
con.Open();
cmd.ExecuteNonQuery();
con.Close();
x = "-9999";
}
else
{
SqlConnection con = new SqlConnection(cons);
SqlCommand cmd = new SqlCommand("Insert_Complain");
cmd.CommandType = CommandType.StoredProcedure;
cmd.Connection = con;
cmd.Parameters.AddWithValue("Com_Flat_No", popup_flat_no.Text);
cmd.Parameters.AddWithValue("Complain_Message", popup_message.Text);
cmd.Parameters.AddWithValue("Date_Complain", "");
con.Open();
cmd.ExecuteNonQuery();
con.Close();
}
Response.Redirect(Request.RawUrl);
}
protected void dropdown1_SelectedIndexChanged(object sender, EventArgs e)
{
DropDownList list = (DropDownList)sender;
string value = (string)list.SelectedValue;
if (value.Equals("Logout"))
{
Session.Clear();
Response.Redirect("Home.aspx");
}
if (value.Equals("Personal Information"))
{
Response.Redirect("myaccount.aspx");
}
if (value.Equals("Change Password"))
{
Response.Redirect("changepassword.aspx");
}
}
}