예제 #1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         MultiView1.ActiveViewIndex = 0;
         int userid = Convert.ToInt32(Session["UserId"]);
         lbltotal.Text = _cart.CartTotal(userid).ToString();
         //  lbltotal.Text = _checkout.GrandTotal(userid);
     }
     // GridView1.DataBind();
 }