i am using asp.net 4.0 iis 7.5 microsoft visual studio 2010

what i want is keep whole page (browser) scroll position (not a div or panel) when asynchronous postback happened (update panel)

how can i do this

actually i had a function which can keep div scroll bar position after postback like this

       <script type="text/javascript">
        var xPos, yPos;
        var prm = Sys.WebForms.PageRequestManager.getInstance();
        prm.add_beginRequest(BeginRequestHandler);
        prm.add_endRequest(EndRequestHandler);
        function BeginRequestHandler(sender, args) {
            xPos = document.getElementById('Main').scrollLeft;
            yPos = document.getElementById('Main').scrollTop;
        }
        function EndRequestHandler(sender, args) {
            document.getElementById('Main').scrollLeft = xPos;
            document.getElementById('Main').scrollTop = yPos;
        }
    </script>

bu i could not find browser scroll bar id to get its values to get with document.getElementById

thanks for answers

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

asp.net has @page directive property called MaintainScrollPositionOnPostBack

hope this will help

link|improve this answer
this does not work for asynchronous postbacks – MonsterMMORPG Oct 16 '10 at 10:14
ok, i think this is the right one: forums.asp.net/t/1300961.aspx and also stackoverflow.com/questions/799852/… – Prashant Lakhlani Oct 16 '10 at 10:21
thanks for answer but did not solve problem for firefox :( – MonsterMMORPG Oct 17 '10 at 10:06
1  
can you please share your code? – Prashant Lakhlani Oct 18 '10 at 7:35
MaintainScrollPostitionOnPostBack works just fine in FireFox. Are you having an issue when trying to combine with another component, say the notorious UpdatePanel, for example? – rlb.usa Oct 27 '10 at 23:28
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.