How to avoid a page jump?

  • Thread starter Thread starter Carlos
  • Start date Start date
C

Carlos

Hi all,

I have a couple of radiobutton lists controls on a long
form. When the postback is performed the page jumps to
the top obligating the user to scroll down. Is there any way to
avoid that?

Thanks!
 
Yes

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

*************************************************
| Think outside the box! |
*************************************************
 
Yes

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

*************************************************
| Think outside the box! |
*************************************************
 
If you want to apply it to all pages, in web.config:
<pages maintainScrollPositionOnPostBack="true">
 
If you want to apply it to all pages, in web.config:
<pages maintainScrollPositionOnPostBack="true">
 
Back
Top