I just thought it would be beneficial to all if I comment on two comments that I recieved on my article about keeping scrollback position. Let's start off with the contridictary comment:
Is this the same code as here, did Justin acknowledge Stanley Glass? Even though it is in VB.
I am unsure. Just look at the date of my article and compare it to the newsgroup post. You should find that Stanley should be the one acknowledging my work... not the other way around. I have already complained a little bit on someone else's blog that people were just replicating my code and passing it off as theirs.
This will save a lot of people frustration using smart navigation. This is what you would expect from the development community and shows we are all out to solve the same problems. I hope Microsoft solves this problem with ASP.NET 2.0?
Your hopes and desires are Microsoft's dream :-). Fortunately, Microsoft makes dreams come true. To enable keeping scrolling over post backs, all you have to do is have the following code on your page:
<%@ Page MaintainScrollPositionOnPostback="true" %>
Or you can enable it in the web.config file on the page section:
<page maintainScrollPositionOnPostback="true" />