I have stored cart in Session["buy"]. When user placed an order item should be removed from cart.
how to do that.
Hi fkz2899,
On Button place order click set Session to null.
Session["buy"] = null;
Which will remove the Items from session.
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.