I have a page with 100 products. When the product is clicked, I add the product info to the cart with session.
I'm sending the id of the product to the session with the querystring.
response.redirect("shop.aspx?id=2")
When the user clicks on the product, my page is refreshed because it sends a querystring to the page and the page position goes to the top.
MaintainScrollPositionOnPostback="true"
not work for me cause i use response.redirect();
thats my problem. Thanks all =(