how to show the panel scroll completely down when it is loaded.
-
Set the overflow style to auto or scroll like,
MY_PANEL.Style.Add ("overflow", "auto")
Here MY_PANEL is your panel control's ID.
[Venkatesh Mookkan] My: Website | Yahoo Group | Blog Spot
-
Set the overflow style to auto or scroll like,
MY_PANEL.Style.Add ("overflow", "auto")
Here MY_PANEL is your panel control's ID.
[Venkatesh Mookkan] My: Website | Yahoo Group | Blog Spot
-
i mean that when the form is loaded scroll bar should come to the down instead of showing top by default
jagadeeshkumar2106 wrote:
i mean that when the form is loaded scroll bar should come to the down instead of showing top by default
You can either use named anchor and call it. For Example, if your page name is "Default.aspx", add a named anchor at the end of the name as,
<a name="page_end"></a>
Now while redirecting call "Default.aspx#page_end" OR
document.getElementById('MY_PANEL').scrollTop = MAXIMUM_SIZE;
[Venkatesh Mookkan] My: Website | Yahoo Group | Blog Spot