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