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. |
|