Posted on: 10/6/2014 12:08:58 AM | Views : 423

Hi guys, just looking for the last piece of the code needed for my assignment. I've been busting my butt all day with session objects. I'm nearly at the end of it. I need to pass my user input from shoppingcart.aspx into a table on display.aspx. The input is just a set of checkboxes with a submit button. 
The display.aspx needs a simple table to display the product and the amount of that product ordered. Since it's a checkbox page the products will just need to show either a 0 or a 1. 


ShoppingCart.aspx.cs
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls;
public partial class _Default : System.Web.UI.Page {       protected void AddToCart_Click(object sender, EventArgs e)       {             //storing values ...

Go to the complete details ...