Keeping your ASP.NET webform’s position on postback
I see that question appearing on the ASP.NET forums over and over again so I decided to dedicate a post on the subject. There are, depending on the .NET framework properties available that can help one out:
- ASP.NET 1.x: use SmartNavigation.* ASP.NET 2.0: use MaintainScrollPositionOnPostBack.* Use an UpdatePanel control to asynchronously update parts of a page.
Grz, Kris.


Leave a Comment