On my first page I have two listboxes for Movies and Snacks
They are called lbDisplay for Movies and lbSelected for Snacks.
I am currently using a "Go to cart" function that has the following code:
Session["lbSelectedMovies"] = lbDisplay;
Session["lbSelectedSnacks"] = lbSelected;
Response.Redirect("RingU6POSReview.aspx");
on the redirected page the two listboxes that I want the given values to transfer to are called lbRvMovies and lbRvSnacks
The page is called RingU6POSReview.aspx
Can anyone help me understand how to transfer the values when I redirect the customer?