-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKidsGirlWear3.aspx.cs
32 lines (29 loc) · 972 Bytes
/
KidsGirlWear3.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
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 WebForm10 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void addKidGirlWear3_Click(object sender, EventArgs e)
{
Session["KidGirlWear3add"] = "Pink Printed Sleeveless Dress";
Session["KidGirlWear3Price"] = "899";
Session["KidGirlWear3Qty"] = KidGirlWear3Qty.SelectedValue;
addKidGirlWear3.Visible = false;
gotocartKidGirlWear3.Visible = true;
lblAddedMTC.Text = "Added to Cart!!";
lblAddedMTC.ForeColor = System.Drawing.Color.Green;
}
protected void gotocartKidGirlWear3_Click(object sender, EventArgs e)
{
Response.Redirect("CartPage.aspx");
}
}
}