Web Forms :: How To Create Shopping Cart In Web Application
Jul 23, 2012Concept.about shopping cart.
View 1 RepliesConcept.about shopping cart.
View 1 RepliesWhat is the easy way to create shopping cart?
View 8 RepliesHow to create a simple shopping cart in asp.net/c#
View 4 RepliesI am working on building a new shopping cart applicaiton. When i checked many shopping card applications, i found that the cateogry pages and product pages seems to be dynamically created. eg: http://shopping.sify.com/cadbury-bournville-almond/chocolates/CHOC24112009TTL14.htm
How this is being done? Is this page is created while adding product itself?
I am working on a Railway Portal and would require maintaining a shopping cart of components user has selected, there could be multiple components of different type in the cart. I don't see a value in storing the cart in database, would like to store the final order in DB. Where can I store/hold (temporary) the cart data per user session in MVC? All MVC samples I saw online save the cart data in DB - not sure why.
MVC presentation layer will be communicating with external web services for pricing and availability of these components, so I can't store only the product IDs to do a lookup for actual product descriptions/prices during the shopping process... I have to store everything in the cart (Product IDs, Descriptions, Prices etc) some place in memory. My application will be running in WEB FARM environment and cannot use in-process session storage.
Options come to my mind are:
SESSION STATE in SQL SERVER Using some kind of Distributed Caching Mechanism to store Session data such as "Windows Server AppFabric"
i want to know how to add cart in datalist..
View 1 RepliesI know how to use Profile Shopping cart property with Web site but i can't use it with web application
if you can refere me to any post explains how to use Profile Shopping cart property with Web application.
For example if i used this code in web application does not work but it works in website!
[code]....
I have created a shopping cart where i currently store items in a session but i want to get away from this.
so i am going to store it in a list.
how can i create a custom class for this and store the values everytime items are added.
I have two e-commerce sites. One was built using ASP .net technology and the other one was built using open source codes.
Now I would like to allow shared shopping cart between the two sites. The customer will be able to add product from either site to the same shopping cart and check out.
Has anyone done this type of project before? It seems that there isn't any easy solution -- i.e. we would have to build a new shopping cart from group up for both sites.
I'm trying to make a shopping cart and i've reached where I can select the item and view it by itself and click the add to cart but I no Idea how to make the cart .I got one from this site http://csharpdotnetfreak.blogspot.com/2009/05/aspnet-creating-shopping-cart-example.html but it dosen't work with my application since i've built in my own Authentication and they use windows authentacion.
View 2 Replieshow can i cart items for shopping cart application ...i am really new to web development and i want to create a shopping cart and want to cart items in it. how should i cart items.
View 2 RepliesHow to implement shopping cart in asp.net. Provide with step by step procedures
View 3 RepliesHow to design shoping cart in ASP.Net?
View 1 Repliesthe purpose of using Profile in asp.net. I would like to know the usage of profile in shopping cart based sites.I could see from some of the cart websites that profile plays a major role for online shopping projects.It is better to know how this profile to create opnline website and which websites or example to reach the technologies as well.
View 1 RepliesAnyways i am having some serious trouble with a datalist. im sure it is probably pretty easy but im am just not very good at all with the codebehind. Basically i have a datalist connected to sqldatasource and it pulls a list of items. I want to be able to select a record from the datalist and store that value in some sort of shopping cart.
<asp:DataList ID="DataList1" runat="server" CellPadding="4"
DataSourceID="SqlDataSource1" ForeColor="#333333">
<FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<AlternatingItemStyle BackColor="White" ForeColor="#284775" />
<ItemStyle BackColor="#F7F6F3" ForeColor="#333333" />
[Code]....
I have a listview displaying my products and an "Add to Cart" button in the item template. the button fires 2 functions that should add that specific products information and the order details to two SQL database tables(Orders and Quantity(intersection entity between Orders and Products tables)) then you get redirected to the shopping cart page and it should display the item(s) according the specific key in the Quantity table(key is foreign key in Orders)My problem is that i cannot pull any information from the specific item template when i click that button. Need a way to find that specific controls information in my listview. Can anyone help with this?Below is my item template...
<ItemTemplate>\
<td id="Td2" runat="server">
<table ID="Prodtable" runat="server" width="130px" height="95px">
[code]...
String conn = System.Configuration.ConfigurationManager.ConnectionStrings["conString"].ConnectionString;
SqlConnection con = new SqlConnection(); // for connection
SqlDataAdapter adp = new SqlDataAdapter(); // for fetch the records acc. to condition
DataTable dt = new DataTable(); // fill the fetched records
DataTable tb; // will store the session
[Code] .....
How will I get the total number of quantity....
In my online shop, users can search products,each product have a link called add to shopping cart, users can add to the list many products like anonymous user, the question is.How can i do,for not to lose the product list, when user make Log in or create one account in my site
View 1 RepliesAfter I complete an order and return to my products area my shopping cart still shows the items that were ordered. I have checked the database and the items are not there anymore. somehow my code is remembering the data.
View 3 RepliesI have some experience in developing a shopping cart in Dreamweaver. Now I wanna develop a fully functional shopping cart with Paypal payment integration in Visual Developer Express Edition 2010. My question is - Is there any nice tutorial to develop fully functional Shopping cart with Paypal Integration in ASP.NET?...
I have seen some tutorial some of them are without Payment System and Some of them are content management systems. I wanna develop my own. what is best Tutorial to develop fully functional shopping cart with Payment System in Visual Developer Express Edition 2010.
can i get a good example.. in order to get started with shopping cart.. how long it's gonna take while implementing it..?
View 5 Repliesoffer a good shopping cart tutorial?This looked like just the thing: http://net.tutsplus.com/tutorials/other/build-a-shopping-cart-in-aspnet/There are postive and negative comments though.I'm a C# beginner so know how to put it mostly together, but I'm not experience enough to know anything about "singletons" and other performance issues that above code may have.
View 5 RepliesWhat is the most common or preferred control to build the shopping cart? By this, I mean the actual control that contains the product image, description, price & checkbox to select the item.
View 8 RepliesI am building a shopping cart with datatable in C#.net.As i select the product again for shopping cart,besides inceasing the quantity of the product.it is showing the product again in gridview.
View 4 RepliesI am making progress on my shopping cart page. I want to show the contents of my shopping cart but I am puzzled on how to do this.
Here is the code :
Cart Class (Cart.cs)
[Code]....
Default.aspx ( I would like the cart to show up on a label on this page at the bottom)
[Code]....
[Code]....