Scroll to the Bottom of the Page after postBack

baker

I need to Scroll Automatically to the Bottom of the Page when I click on the button. I have found lot of solutions on the forum but it don't work for me. I tried this in Java Script :

<asp:Button  ID="btn_add_action1" runat="server" Text="Ajouter une action" onclick="btn_add_action1_Click" OnClientClick = "goToBottom()" />

With the JS function :

window.scrollTo(0,document.body.scrollHeight);

or

document.body.scrollTop = document.body.scrollHeight;

I found this here : Scroll Automatically to the Bottom of the Page

I tried many other solution but it don't work

VDWWD

When you click the button, a PostBack is performed. That means the scrolling position will be lost. If you want to scroll to the bottom of the page you have to do it after the PostBack is done, by using ScriptManager

protected void Button1_Click(object sender, EventArgs e)
{
    //your button code

    ScriptManager.RegisterStartupScript(Page, Page.GetType(), "scrollDown", "setTimeout(function () { window.scrollTo(0,document.body.scrollHeight); }, 25);", true);
}

There is also something called MaintainScrollPositionOnPostBack, that does something similar, it goes to the same position as the button click after PostBack.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Scroll to bottom of page after get request AngularJs

From Dev

Keeping scroll position after a postback

From Java

Scroll Automatically to the Bottom of the Page

From Dev

Infinitely scroll to the bottom of the page

From Dev

Scroll to near the bottom of page

From Dev

scroll the a growing page to the bottom

From Dev

Scroll bar in page bottom

From Dev

Scroll to near the bottom of page

From Dev

asp.net mvc, unordered list scroll to bottom on postback

From Dev

asp.net mvc, unordered list scroll to bottom on postback

From Dev

JS for smooth scroll to the bottom of the page

From Dev

Automatically scroll to bottom as the page loads

From Dev

$mdtoast position bottom of page on scroll

From Dev

JS for smooth scroll to the bottom of the page

From Dev

$mdtoast position bottom of page on scroll

From Dev

scroll to bottom on page load but will allow to scroll on top

From Dev

scroll to bottom on page load but will allow to scroll on top

From Dev

Fix an element to bottom after scroll

From Dev

Fix an element to bottom after scroll

From Dev

Jquery events on Jquery Mobile Page After Postback

From Dev

Laravel - redirect to page and scroll to the bottom of the page

From Dev

Laravel - redirect to page and scroll to the bottom of the page

From Dev

how to scroll the page to bottom whenever the page load?

From Dev

CSS- stick footer to bottom of page (so only visible after scroll) WITHOUT html selector?

From Dev

jquery one page scroll start at the bottom

From Dev

Detect if scroll has touched bottom of page

From Dev

How to add some more scroll at the bottom of the page

From Dev

Scroll HTML page before it 'reaches' the bottom

From Dev

How to add some more scroll at the bottom of the page

Related Related

  1. 1

    Scroll to bottom of page after get request AngularJs

  2. 2

    Keeping scroll position after a postback

  3. 3

    Scroll Automatically to the Bottom of the Page

  4. 4

    Infinitely scroll to the bottom of the page

  5. 5

    Scroll to near the bottom of page

  6. 6

    scroll the a growing page to the bottom

  7. 7

    Scroll bar in page bottom

  8. 8

    Scroll to near the bottom of page

  9. 9

    asp.net mvc, unordered list scroll to bottom on postback

  10. 10

    asp.net mvc, unordered list scroll to bottom on postback

  11. 11

    JS for smooth scroll to the bottom of the page

  12. 12

    Automatically scroll to bottom as the page loads

  13. 13

    $mdtoast position bottom of page on scroll

  14. 14

    JS for smooth scroll to the bottom of the page

  15. 15

    $mdtoast position bottom of page on scroll

  16. 16

    scroll to bottom on page load but will allow to scroll on top

  17. 17

    scroll to bottom on page load but will allow to scroll on top

  18. 18

    Fix an element to bottom after scroll

  19. 19

    Fix an element to bottom after scroll

  20. 20

    Jquery events on Jquery Mobile Page After Postback

  21. 21

    Laravel - redirect to page and scroll to the bottom of the page

  22. 22

    Laravel - redirect to page and scroll to the bottom of the page

  23. 23

    how to scroll the page to bottom whenever the page load?

  24. 24

    CSS- stick footer to bottom of page (so only visible after scroll) WITHOUT html selector?

  25. 25

    jquery one page scroll start at the bottom

  26. 26

    Detect if scroll has touched bottom of page

  27. 27

    How to add some more scroll at the bottom of the page

  28. 28

    Scroll HTML page before it 'reaches' the bottom

  29. 29

    How to add some more scroll at the bottom of the page

HotTag

Archive