Have you tried window.scrollTo (0, 0);
If you have, maybe compatible with setTimeout
window.setTimeout("window.scrollTo(0, 0)", 3000);
Although I expect this to lead to some ugly jumps.
EndRequest
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);
function EndRequestHandler(sender, args)
{
window.scrollTo(0, 0);
}