-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWomensTrad3.aspx.cs
33 lines (29 loc) · 957 Bytes
/
WomensTrad3.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 WebForm7 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void addWomenTrad3_Click(object sender, EventArgs e)
{
Session["WomenTrad3add"] = "Black Banarasi Designer Saree";
Session["WomenTrad3Price"] = "2799";
Session["WomenTrad3Qty"] = WomenTrad3Qty.SelectedValue;
addWomenTrad3.Visible = false;
gotocartWomenTrad3.Visible = true;
lblAddedMTC.Text = "Added to Cart!!";
lblAddedMTC.ForeColor = System.Drawing.Color.Green;
}
protected void gotocartWomenTrad3_Click(object sender, EventArgs e)
{
Response.Redirect("CartPage.aspx");
}
}
}