up vote 0 down vote favorite
share [g+] share [fb]

I need to add the itemid from the list of rows when I click 'add to cart' button in the gridview, I was able to pass this itemid to a arraylist.

But the problem is that everytime I click the button the previous itemid is overwritten with the new item instead I want the arraylist to expand.

public partial class Drama_k : System.Web.UI.Page
{
    string Cn=@"Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\ewap_k.mdf;Integrated Security=True;User Instance=True";
    ArrayList arrValues = new ArrayList(4);

protected void GridView2_RowCommand(object sender, GridViewCommandEventArgs e)
    {
        if (e.CommandName=="AddToCart")
        {
            int index = Convert.ToInt32(e.CommandArgument);
            Session["item"] = GridView2.DataKeys[index].Value.ToString();
            arrValues.Add(Session["item"]);
            GridView1.DataSource = arrValues;
            GridView1.DataBind();
        }
    }
}
link|improve this question

67% accept rate
feedback

2 Answers

up vote 1 down vote accepted

don't forget that the arraylist is not stored somewhere, you have to store it in the user's session and on each postback caused by the button retrieve it from the session and add the item clicked by the user.

Edit: Here is a little sample of how you should store the ArrayList in the session and retrieve it on each postback.

    public partial class _Default : System.Web.UI.Page
{
    ArrayList array;
    protected void Page_Load(object sender, EventArgs e)
    {
        if(Session["array"] == null)
        {
            array = new ArrayList();
            Session.Add("array", array);
        }
        else
            array = Session["array"] as ArrayList;
        GridView1.DataSource = array; 
        GridView1.DataBind(); //Edit 2
    }

    protected void Button1_Click(object sender, EventArgs e)
    {
        array.Add(DateTime.Now);
    }
}

if you still have questions let me know.

link|improve this answer
im sorry my knowledge in c# is not that good. how exactly im i suposed to do this. thanks – pier May 14 '09 at 19:37
is it like this Session["item"] = arrValues; – pier May 14 '09 at 19:42
exactly like this. – Konstantinos May 14 '09 at 19:48
im a bit confused, 1st i need to add the items to an arraylist as the user clicks the 'add to cart' button in the gridview row and then add the arraylist to the session? when i retrieve it gives 1 value as well evn though i click on 2 items? thanks – pier May 14 '09 at 20:00
i tired the code, it doesnt display anything in the gridview1 ? – pier May 14 '09 at 20:30
show 4 more comments
feedback

You just need to store that ArrayList in the ViewState or Session so it will retain its values between postbacks.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.