smart navigation works

K Pravin Kumar Reddy replied at 25-Aug-06 04:57
hello

To avoid this, ASP.NET provides the SmartNavigation property for the page which takes care of the scroll position.

SmartNavigation also avoids the flickering of the page when the page is reloaded.

It can be enabled by simply setting its value to true in the page directive, as follows:-

<%Page smartNavigation="True" %>

Alternatively, it can be specified as a global setting in the web.config as follows:-

<configuration>
<system.web>
<pages smartNavigation="true"/>
</system.web>
</configuration>


in ur looking smartnavigation using javascript check it

http://www.codeproject.com/useritems/smartnavwebctrls.asp
Biography
K Praveen Kumar Reddy MCTS.

Click here to sign in and reply. You could earn money via our $500 contest just for being helpful.
  Reset Scroll Position - vimal percy  25-Aug-06 03:17 3:17:33 AM
      smart navigation works - K Pravin Kumar Reddy  25-Aug-06 04:57 4:57:13 AM
          Smart Navigation is obsolete - vimal percy  25-Aug-06 07:01 7:01:04 AM
              check out - K Pravin Kumar Reddy  25-Aug-06 08:52 8:52:23 PM
      RE:Use MaintainScrollPositionOnPostback - Sushila Patel  25-Aug-06 09:30 9:30:16 AM
View Posts