My page scrolls down a bit, so the problem is when the ASP.NET validation kicks in (its a server side validation that sets a table row to visible if there was a failed validation for a given input box).
The problem is, when there is an error, the page scrolls back to the top.
How can I force the page to the bottom?
I can use <a name="asdf"></name> but the page doesn’t refresh normally since its a asp.net image button.
If your error is near the button that performs the postback then you can set
MaintainScrollPositionin the Page Declaration which will take you back to where you were after the postback.