-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProductView.aspx.cs
169 lines (152 loc) · 5.89 KB
/
ProductView.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
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class ProductView : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (Request.QueryString["PID"] != null)
{
if (!IsPostBack)
{
BindProductImages();
BindProductDetails();
}
}
else
{
Response.Redirect("~/Products.aspx");
}
}
private void BindProductDetails()
{
Int64 PID = Convert.ToInt64(Request.QueryString["PID"]);
String CS = ConfigurationManager.ConnectionStrings["MyDatabaseConnectionString1"].ConnectionString;
using (SqlConnection con = new SqlConnection(CS))
{
using (SqlCommand cmd = new SqlCommand("select * from tblProducts where PID=" + PID + "", con))
{
cmd.CommandType = CommandType.Text;
using (SqlDataAdapter sda = new SqlDataAdapter(cmd))
{
DataTable dtBrands = new DataTable();
sda.Fill(dtBrands);
rptrProductDetails.DataSource = dtBrands;
rptrProductDetails.DataBind();
}
}
}
}
private void BindProductImages()
{
Int64 PID = Convert.ToInt64(Request.QueryString["PID"]);
String CS = ConfigurationManager.ConnectionStrings["MyDatabaseConnectionString1"].ConnectionString;
using (SqlConnection con = new SqlConnection(CS))
{
using (SqlCommand cmd = new SqlCommand("select * from tblProductImages where PID=" + PID + "", con))
{
cmd.CommandType = CommandType.Text;
using (SqlDataAdapter sda = new SqlDataAdapter(cmd))
{
DataTable dtBrands = new DataTable();
sda.Fill(dtBrands);
rptrImages.DataSource = dtBrands;
rptrImages.DataBind();
}
}
}
}
protected string GetActiveClass(int ItemIndex)
{
if (ItemIndex == 0)
{
return "active";
}
else
{
return "";
}
}
protected void rptrProductDetails_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
{
string BrandID = (e.Item.FindControl("hfBrandID") as HiddenField).Value;
string CatID = (e.Item.FindControl("hfCatID") as HiddenField).Value;
string SubCatID = (e.Item.FindControl("hfSubCatID") as HiddenField).Value;
string GenderID = (e.Item.FindControl("hfGenderID") as HiddenField).Value;
RadioButtonList rblSize = e.Item.FindControl("rblSize") as RadioButtonList;
String CS = ConfigurationManager.ConnectionStrings["MyDatabaseConnectionString1"].ConnectionString;
using (SqlConnection con = new SqlConnection(CS))
{
using (SqlCommand cmd = new SqlCommand("select * from tblSizes where BrandID=" + BrandID +
" and CategoryID=" + CatID + " and SubCategoryID=" + SubCatID +
" and GenderID=" + GenderID + "", con))
{
cmd.CommandType = CommandType.Text;
using (SqlDataAdapter sda = new SqlDataAdapter(cmd))
{
DataTable dtBrands = new DataTable();
sda.Fill(dtBrands);
rblSize.DataSource = dtBrands;
rblSize.DataTextField = "sizename";
rblSize.DataValueField = "sizeid";
rblSize.DataBind();
}
}
}
}
}
protected void btnAddToCart_Click(object sender, EventArgs e)
{
string SelectedSize = string.Empty;
foreach (RepeaterItem item in rptrProductDetails.Items)
{
if (item.ItemType == ListItemType.Item || item.ItemType == ListItemType.AlternatingItem)
{
var rbList = item.FindControl("rblSize") as RadioButtonList;
SelectedSize = rbList.SelectedValue;
var lblError = item.FindControl("lblError") as Label;
lblError.Text = "";
}
}
if (SelectedSize != "")
{
Int64 PID = Convert.ToInt64(Request.QueryString["PID"]);
if (Request.Cookies["CartPID"] != null)
{
string CookiePID = Request.Cookies["CartPID"].Value.Split('=')[1];
CookiePID = CookiePID + "," + PID + "-" + SelectedSize;
HttpCookie CartProducts = new HttpCookie("CartPID");
CartProducts.Values["CartPID"] = CookiePID;
CartProducts.Expires = DateTime.Now.AddDays(30);
Response.Cookies.Add(CartProducts);
}
else
{
HttpCookie CartProducts = new HttpCookie("CartPID");
CartProducts.Values["CartPID"] = PID.ToString() + "-" + SelectedSize;
CartProducts.Expires = DateTime.Now.AddDays(30);
Response.Cookies.Add(CartProducts);
}
Response.Redirect("~/ProductView.aspx?PID=" + PID);
}
else
{
foreach (RepeaterItem item in rptrProductDetails.Items)
{
if (item.ItemType == ListItemType.Item || item.ItemType == ListItemType.AlternatingItem)
{
var lblError = item.FindControl("lblError") as Label;
lblError.Text = "Please select a size";
}
}
}
}
}