Avoid flicking between pages

  • Thread starter Thread starter Kevin
  • Start date Start date
K

Kevin

Hi!
Is there anyway to avoid flicking between pages navigation in Asp.Net 2.0,
like smartnavigation atribute in asp.net 1.1?

Thanks and Regards.
 
Thanks for Masudur's input.

Hi Kevin,

ASP.NET 2.0 page provide a "MaintainScrollPositionOnPostback" setting which
can keep page focus between postback(originally done by smart navigation in
ASP.NET 1.X). Is this what you want? If not, would you provide some
further info about the "avoid flicking" so that we can look for some other
approahes?

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead


This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
 
Hi
Thanks for your reply. I've set the "MaintainScrollPositionOnPostback"
attribute in the page, but I'm using masterpage and the masterpage doesn't
have this attribute, and by setting this attribute in the content the page
flick.
 
Have you tried putting

<meta http-equiv="PAGE-ENTER"
content="RevealTrans(Duration=0,Transition=1)" />

In the head of the html?

-----Original Message-----
From: Kevin [mailto:[email protected]]
Posted At: Monday, November 05, 2007 9:33 AM
Posted To: microsoft.public.dotnet.framework.aspnet
Conversation: Avoid flicking between pages
Subject: Re: Avoid flicking between pages

Hi
Thanks for your reply. I've set the "MaintainScrollPositionOnPostback"
attribute in the page, but I'm using masterpage and the masterpage doesn't
have this attribute, and by setting this attribute in the content the page
flick.
 
Hi Kevin,

I just found the following article which mentioned some issue about using
"MaintainScrollPositionOnPostback" option in ASP.NET 2.0 master page:

http://forums.asp.net/p/1050231/1483268.aspx

also, here is another article which introduces more about how to maintain
scroll position in web page:

http://aspnet.4guysfromrolla.com/articles/111704-1.aspx

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead


This posting is provided "AS IS" with no warranties, and confers no rights.




--------------------
 
Back
Top