I want to implement a user control which represents a list of the current items in a user's shopping cart, and which is included from within the a master page.
I want to add a product to the shopping cart; the shopping cart should be automatically updated with an asynchronous call (JavaScript framework is jQuery) when a user adds a product to his or her shopping cart, vice versa the contents should be removable from the shopping cart.
I have it implemented statically, the sessions contents (orders, products) are stored in the database.
I have a ProductsController and a OrderController (shopping cart is basically an order with assigned products and a user id or temporary session id).
With all the different Previews, Betas and the RC, and a lack of a centralized documentation for ASP.NET MVC I find it hard to find proper documentation on this subject.
Could anyone point me to some starting tutorials?
Thanks.