-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWomensCasual2.aspx.cs
33 lines (29 loc) · 964 Bytes
/
WomensCasual2.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace WebDevApplication3._0
{
public partial class WebForm8 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void addWomenCasual2_Click(object sender, EventArgs e)
{
Session["WomenCasual2add"] = "Navy Blue A-Line Top";
Session["WomenCasual2Price"] = "1799";
Session["WomenCasual2Qty"] = WomenCasual2Qty.SelectedValue;
addWomenCasual2.Visible = false;
gotocartWomenCasual2.Visible = true;
lblAddedMTC.Text = "Added to Cart!!";
lblAddedMTC.ForeColor = System.Drawing.Color.Green;
}
protected void gotocartWomenCasual2_Click(object sender, EventArgs e)
{
Response.Redirect("CartPage.aspx");
}
}
}