<script>
    $(document).ready(function () {
        $("#button").click(function () {
            window.location.href = "page2.aspx"; 
            $('html, body').animate({ 
                scrollToElement ("#div").offset().top 
            }, 2000); 
        }); 
    });
</script>
The idea, is that you click a button on page1, then you get redirected to page2 and then you scroll to a specific element using jQuery.
 
     
    