Hey everyone,
Question has been asked with no answers over a month ago: http://stackoverflow.com/questions/1806739/shopping-cart-reserve-product/2070884#2070884
Anyway, basically I have a shopping cart for my site in ASP.NET using SQL Server. When a user adds an item to the shopping cart I need to set a value in the product table to reserve the item (in order to avoid more people reserving the item, or buying it). Now, if the current user decides to abondon their cart by closing the browser then how am I to restore the product record to being 'unreserved'? Is there another way of reserving the item globally?
Many thanks