I have a scrollbar with position always defaulted to the topmost part of the page (Page 1) upon load. Also, I have another page (Page 2) that I nagivate to from Page 1. Whenever i click the Back button in Page 2 to navigate back to Page 1, the scrollbar always stays in the top most part of the page. This i think is due to calling a CCS scroll class with property overflow set to auto:
.scroll
{
overflow: auto;
background-color: #fef6d6
}
Is there a way for me to update this current setup such that the scrollbar position will stay to where i left off in Page 1 if I reload the page (via the Back button in Page 1)?
UserAgent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; .NET CLR 1.0.3705)


