I have a page, product.aspx. Inside this page I have a label that shows the count of products added to basket. I also have viewcart.aspx page to show my cart item and edit or delete product.
Everything is well but when I delete a product from viewcart.aspx, I want to decrement the label value on product.aspx. How can I do that?
I use this jQuery to show viewcart.aspx on modal popup:
http://deseloper.org/examples/simple-modal-redux/
also I've tried to use
Label lbl = (Label)this.PreviousPage.FindControl("countlbl");
How can I solve this problem?