Fermin
Fermin

Reputation: 36081

How to persist scroll position using Master Page?

I have a site that uses master pages, the only content that changes is a Div in the centre of the page.

Is there a way that I can persist the scroll position of the page between postbacks? I'm thinking that it might be possible because all pages are using the same Master Page, if not is there some other way to do this?

Thanks

Upvotes: 5

Views: 9275

Answers (3)

Malice
Malice

Reputation: 3977

4guysfromrolla.com has an article where a custom server control is created to maintain scroll position across postbacks. Maybe it could be of some use to you.

Upvotes: 0

Stilgar
Stilgar

Reputation: 23561

Try adding this.Page.MaintainScrollPositionOnPostBack = true; somewhere in the masterpage code behind (for example page load)

Upvotes: 4

Related Questions