Click here to Skip to main content
Licence CPOL
First Posted 31 Dec 2010
Views 13,971
Downloads 2,080
Bookmarked 16 times

Simple Shopping Cart

By | 31 Dec 2010 | Article
Simple shopping cart with session
ShoppingCart.jpg

Introduction

This is a simple basket or shopping cart, that user can select some goods from list and add them to shopping cart. Also a user can remove or change the count of each good. In this article, I use session for storing the shopping cart user can submit for buying and shopping cart saved in database.

Using the Code

In Web, if you need to have common variable in all pages, you must save in session. Session variables store in server and for each user webserver creates a new session ID and session variables. You can store any object in session. I create a DataTable for storing shopping cart and set it in session variable.

Creating a session is very simple:

Session["variable-name"] = variable-value;

Session variable will remove after session time out (default time is 20 minutes), but if you want to remove a session variable:

Session.Remove("variable-name");

In this project, I store DataTable in session. In Page_Load, if there is session variable it reads and if not, it creates an empty DataTable.

if (Session["basket"] != null)
	///read Basket_DataTable from session if exist
	Basket_DataTable = (DataTable)Session["basket"];
else
{
	//create an empty DataTable and Add some columns to it
	Basket_DataTable = new DataTable();
	Basket_DataTable.Columns.Add("id");
	Basket_DataTable.Columns.Add("name");
	Basket_DataTable.Columns.Add("price");
	Basket_DataTable.Columns.Add("pic");
	Basket_DataTable.Columns.Add("count");
	Basket_DataTable.Columns.Add("total");
}

After this, all changes will be made on Basket_DataTable and finally Basket_DataTable saved in session.

Session["basket"] = Basket_DataTable; 

For adding items to shopping cart, I first search for item in Basket_DataTable and if it not found, item will add to shopping cart:

//search item in DataTable
bool Found = false;
for (int i = 0; i < Basket_DataTable.Rows.Count; i++)
    if (Basket_DataTable.Rows[i][0].ToString() == 
    Request["ID"].ToString())
        Found = true;

In the above code, Request["ID"] is ID of Item.

Before adding Item, I search item ID in database and if it finds item, add to basket.

//add item to DataTable
if (Found == false)
{
    //search item in database
    DataAcess data = new DataAcess();
    string sql = "SELECT * FROM kala where id=" + Request["ID"];
    DataTable ret= data.exe_select(sql);
    //if it found in database add it to basket
    if (ret != null && ret.Rows.Count == 1)
    {
        Basket_DataTable.Rows.Add(new object[] 
        { Request["ID"],ret.Rows[0]["name"].ToString()
                                  ,ret.Rows[0]["price"].ToString(),
                                  ret.Rows[0]["pic"].ToString()
                                 ,"1",ret.Rows[0]["price"].ToString()});
    }
}

For removing items from shopping cart, I add a link in each Item that send item id. To remove I search item and if it is found, it will be removed.

if (Request["DelID"] != null)
{
    //search and remove
    for (int i = 0; i < Basket_DataTable.Rows.Count; i++)
        if (Basket_DataTable.Rows[i][0].ToString() == 
        Request["DelID"].ToString())
            Basket_DataTable.Rows.Remove(Basket_DataTable.Rows[i]);
}

Also I add a TextBox for each item, for item count. User can change item count and click update button and item count will change in DataTable.

for (int i = 0; i < GridView2.Rows.Count; i++)
{
    TextBox Tb=(TextBox) GridView2.Rows[i].FindControl("TextBoxCount");
    Basket_DataTable.Rows[i]["count"] = Tb.Text;
    Basket_DataTable.Rows[i]["total"] = Convert.ToInt32(Tb.Text)*
		Convert.ToInt32(Basket_DataTable.Rows[i]["price"]);
}

I also add some code for saving shopping cart in database, I save item id and item count in database.

DataAcess data = new DataAcess();
for (int i = 0; i < GridView2.Rows.Count; i++)
{
	String ID = GridView2.Rows[i].Cells[0].Text.ToString(); ;
	TextBox Tb = (TextBox)GridView2.Rows[i].FindControl("TextBoxCount");
	string sql = "INSERT INTO Basket (count, id)VALUES ({0}, {1})";
	sql = string.Format(sql, Tb.Text, ID);
	data.exe_cmd(sql);
}

Summary

In this article, I describe a simple shopping cart with session. It is simple but I hope it helps you. Also, you can find a simple and useful class for connecting to database (I don't mention in the article).

Have fun with C# coding.

History

  • 31st December, 2010: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

mohammad hajibegloo

Engineer
neyshabur azad univeristy
Iran (Islamic Republic Of) Iran (Islamic Republic Of)

Member

I had worked as programmer,project manager,web developer for more than 3 years.
I have worked in university as a teacher for 5 years.
my favorite langueges are : VC++,C#,ASP.NET,PHP

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 1 PinmemberGalva_Delphi6:00 20 May '12  
Suggestion[My vote of 1] Not good Pingroupwidestination2:03 30 Mar '12  
GeneralRe: [My vote of 1] Not good Pinmembermohamad hajibegloo21:52 30 Mar '12  
GeneralMy vote of 5 Pinmemberasdf1234hn21:03 6 Jan '11  
GeneralMy vote of 5 PinmemberSunasara Imdadhusen23:17 4 Jan '11  
GeneralMy vote of 1 Pinmemberg0got210:45 31 Dec '10  
RantRe: My vote of 1 Pinmembermohamad hajibegloo8:10 1 Jan '11  
GeneralRe: My vote of 1 PinmemberSunasara Imdadhusen23:17 4 Jan '11  
General[My vote of 2] Using SQL in UI PingroupGagan11187:13 31 Dec '10  
GeneralMy vote of 1 PinmvpMark Nischalke7:02 31 Dec '10  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 31 Dec 2010
Article Copyright 2010 by mohammad hajibegloo
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid