In ASP.NET 1.x, if you enable SmartNavigation on the page, it should be able
to retain the scroll position after postback.
Here's more info:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlr
fSystemWebUIPageClassSmartNavigationTopic.asp
If you're using ASP.NET 2.0, there is a (usually) better alternative:
Page.MaintainScrollPositionOnPostBack = True
Here's more info:
http://msdn2.microsoft.com/en-us/library/system.web.ui.page.maintainscrollpositi
ononpostback.aspx

Signature
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
> I'm just in the process of developing a web server component and have come
> up against one final problem. It's like a data grid in that it displays
[quoted text clipped - 13 lines]
>
> - Paul.
Paul - 21 Aug 2006 08:21 GMT
That's great, thanks for the help. Thanks also for not pointing out that
I'd forgotten to add which version of DotNet I was using (it was 2.0).
> In ASP.NET 1.x, if you enable SmartNavigation on the page, it should be
> able
[quoted text clipped - 27 lines]
>>
>> - Paul.