Hello all.
I've got an interesting predicament. The page is quite complex, but imagine this simplified layout...
<Page>
<UpdatePanel> Lots of content </UpdatePanel>
<LinkButton/>
</Page>
Now when the LinkButton is clicked, it does a post back and updates whatever is inside the update panel by calling Update on it. So the page doesn't move, and only a portion of it redraws. The link button that was clicked needs to do its postback and update the update panel, but it needs to also jump the user to the top of the page.
I managed at one point to get the jump happening, but then the post back didn't take place. I was wondering how people would tackle this one? Is there a best practice approach to this kind of thing?
Thanks,
Matt
My code doesn't have bugs, it just develops random features.