protected void ProductMenuListView_ItemCommand(object sender, ListViewCommandEventArgs e)
    {
        var btnAdd   = e.Item.FindControl("AddButton") as Button;
        var lbtnCart = e.Item.FindControl("CartButton") as LinkButton;
        var lbQ      = e.Item.FindControl("lbQuantities") as Label;
        var txEnterQ = e.Item.FindControl("tbSubmit") as TextBox;

        if (e.CommandArgument == "Clicked")
        {
            btnAdd.Visible   = false;
            lbtnCart.Visible = true;
            lbQ.Text         = txEnterQ.Text;


            //SiteMaster S = new SiteMaster();
            //S.addItems(e.CommandArgument);

            // lbConstructing.Text = (e.CommandName).ToString();

            TempaleControll LotteryMax = new TempaleControll();
            LotteryMax.AddToCart(Int32.Parse(e.CommandName), int.Parse(txEnterQ.Text));

            //ProductMenuListView.DataBind();
        }
    }
 protected void GridView1_SelectedIndexChanging(object sender, GridViewSelectEventArgs e)
 {
     if (e.NewSelectedIndex != -1)
     {
         GridViewRow     row        = GridView1.Rows[e.NewSelectedIndex];
         string          categoryid = (row.FindControl("ID") as Label).Text;
         int             preid      = Int32.Parse(categoryid);
         TempaleControll Lottery649 = new TempaleControll();
         Lottery649.getProductMenu(preid);
         ProductMenuListView.DataBind();
     }
     else
     {
         //GridViewRow row = GridView1.Rows[0];
         TempaleControll Lottery649 = new TempaleControll();
         Lottery649.getProductMenu(0);
         ProductMenuListView.DataBind();
     }
 }
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!Request.IsAuthenticated)
        {
            Response.Redirect("~/Admin/LoginPage.aspx");
        }
        else
        {
            lbUserName.Text       = User.Identity.GetUserName();
            lbTrackingCookie.Text = User.Identity.GetUserId();
            TempaleControll Lottery649 = new TempaleControll();


            string UserName       = User.Identity.GetUserName();
            Guid   TrackingCookie = Guid.Parse(User.Identity.GetUserId());
            //string guidID = User.Identity.GetUserId().ToString();
            //Int32 value = Int32.Parse(guidID);


            Lottery649.AddToOnlineCustomer(TrackingCookie, UserName);
        }
    }